Fix freeing the allocated string SID

svn path=/trunk/; revision=39304
This commit is contained in:
Colin Finck 2009-02-03 09:39:57 +00:00
parent b7dc6dc3d9
commit 3f5fd0f760

View file

@ -1197,7 +1197,7 @@ static HRESULT _SHGetUserProfilePath(HANDLE hToken, DWORD dwFlags, BYTE folder,
hr = _SHGetUserShellFolderPath(hRootKey, userPrefix, CSIDL_Data[folder].szValueName, pszPath);
/* Free the memory allocated by ConvertSidToStringSidW */
if(!hToken && hToken != (HANDLE)-1)
if(hToken && hToken != (HANDLE)-1)
LocalFree(userPrefix);
if (FAILED(hr) && hRootKey != HKEY_LOCAL_MACHINE)