Jacek Caban : mshtml: Install Gecko in system directory.
Module: wine Branch: master Commit: 870f508c987c2f16c99eef7b9617b5a1e83efede URL: http://source.winehq.org/git/wine.git/?a=commit;h=870f508c987c2f16c99eef7b96... Author: Jacek Caban <jacek(a)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) {
participants (1)
-
Alexandre Julliard