From 5e4f3477f3b907fdedc6c52b8f77bdddc1bcaacc Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Thu, 29 Dec 2011 13:21:45 +0000 Subject: [PATCH] [SYSDM] Fix the fix... svn path=/trunk/; revision=54779 --- reactos/dll/cpl/sysdm/hardprof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/cpl/sysdm/hardprof.c b/reactos/dll/cpl/sysdm/hardprof.c index 98876fe72da..fe4834dcfe1 100644 --- a/reactos/dll/cpl/sysdm/hardprof.c +++ b/reactos/dll/cpl/sysdm/hardprof.c @@ -216,7 +216,7 @@ GetProfiles(HWND hwndDlg) pProfileData->dwProfileCount * sizeof(PROFILE)); if (pProfileData->pProfiles == NULL) { - HeapFree(GetProcessHeap(), 0, pProfileData); + HeapFree(pProfileData, 0, GetProcessHeap()); return FALSE; }