- Fix the friends of the bug of the month

svn path=/trunk/; revision=47179
This commit is contained in:
Gregor Schneider 2010-05-12 19:19:44 +00:00
parent 47b27e38f3
commit 0b2f076246
2 changed files with 6 additions and 6 deletions

View file

@ -234,10 +234,10 @@ GroupNew(HWND hwndDlg)
}
if (group.lgrpi1_name)
HeapFree(GetProcessHeap, 0, group.lgrpi1_name);
HeapFree(GetProcessHeap(), 0, group.lgrpi1_name);
if (group.lgrpi1_comment)
HeapFree(GetProcessHeap, 0, group.lgrpi1_comment);
HeapFree(GetProcessHeap(), 0, group.lgrpi1_comment);
}

View file

@ -294,16 +294,16 @@ UserNew(HWND hwndDlg)
}
if (user.usri3_name)
HeapFree(GetProcessHeap, 0, user.usri3_name);
HeapFree(GetProcessHeap(), 0, user.usri3_name);
if (user.usri3_full_name)
HeapFree(GetProcessHeap, 0, user.usri3_full_name);
HeapFree(GetProcessHeap(), 0, user.usri3_full_name);
if (user.usri3_comment)
HeapFree(GetProcessHeap, 0, user.usri3_comment);
HeapFree(GetProcessHeap(), 0, user.usri3_comment);
if (user.usri3_password)
HeapFree(GetProcessHeap, 0, user.usri3_password);
HeapFree(GetProcessHeap(), 0, user.usri3_password);
}