mirror of
https://github.com/reactos/reactos.git
synced 2025-01-21 05:39:12 +00:00
[SYSDM]
Fix the fix of the fix svn path=/trunk/; revision=54780
This commit is contained in:
parent
5e4f3477f3
commit
b604379064
1 changed files with 2 additions and 2 deletions
|
@ -208,7 +208,7 @@ GetProfiles(HWND hwndDlg)
|
|||
|
||||
if (!GetProfileCount(&pProfileData->dwProfileCount))
|
||||
{
|
||||
HeapFree(pProfileData, 0, GetProcessHeap());
|
||||
HeapFree(GetProcessHeap(), 0, pProfileData);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -216,7 +216,7 @@ GetProfiles(HWND hwndDlg)
|
|||
pProfileData->dwProfileCount * sizeof(PROFILE));
|
||||
if (pProfileData->pProfiles == NULL)
|
||||
{
|
||||
HeapFree(pProfileData, 0, GetProcessHeap());
|
||||
HeapFree(GetProcessHeap(), 0, pProfileData);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue