mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
Fix freeing the allocated string SID
svn path=/trunk/; revision=39304
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user