Jacek Caban : mshtml: Install Gecko in system directory.

Alexandre Julliard julliard at winehq.org
Tue Aug 4 12:25:47 CDT 2009


Module: wine
Branch: master
Commit: 870f508c987c2f16c99eef7b9617b5a1e83efede
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=870f508c987c2f16c99eef7b9617b5a1e83efede

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Tue Aug  4 14:04:03 2009 +0200

mshtml: Install Gecko in system directory.

---

 dlls/mshtml/install.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/mshtml/install.c b/dlls/mshtml/install.c
index 2dd91d8..c993b99 100644
--- a/dlls/mshtml/install.c
+++ b/dlls/mshtml/install.c
@@ -141,7 +141,7 @@ static BOOL install_cab(LPCWSTR file_name)
 
     TRACE("(%s)\n", debugstr_w(file_name));
 
-    GetWindowsDirectoryA(install_dir, sizeof(install_dir));
+    GetSystemDirectoryA(install_dir, sizeof(install_dir));
     strcat(install_dir, "\\gecko\\");
     res = CreateDirectoryA(install_dir, NULL);
     if(!res && GetLastError() != ERROR_ALREADY_EXISTS) {




More information about the wine-cvs mailing list