mshtml: Use the current AppData folder instead of the default one as profile directory.

This commit is contained in:
Alexandre Julliard 2012-02-06 17:39:57 -06:00
parent 91a63ad08c
commit 0aeb38bb4c

View file

@ -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;