mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:26:10 +00:00
mshtml: Use the current AppData folder instead of the default one as profile directory.
This commit is contained in:
parent
91a63ad08c
commit
0aeb38bb4c
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ static nsresult create_profile_directory(void)
|
|||
nsresult nsres;
|
||||
HRESULT hres;
|
||||
|
||||
hres = SHGetFolderPathW(NULL, CSIDL_APPDATA, NULL, SHGFP_TYPE_DEFAULT, path);
|
||||
hres = SHGetFolderPathW(NULL, CSIDL_APPDATA, NULL, SHGFP_TYPE_CURRENT, path);
|
||||
if(FAILED(hres)) {
|
||||
ERR("SHGetFolderPath failed: %08x\n", hres);
|
||||
return NS_ERROR_FAILURE;
|
||||
|
|
Loading…
Reference in a new issue