mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[USRMGR]
- Fix the friends of the bug of the month svn path=/trunk/; revision=47179
This commit is contained in:
parent
47b27e38f3
commit
0b2f076246
2 changed files with 6 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue