mirror of
https://github.com/reactos/wine.git
synced 2025-02-16 19:10:35 +00:00
rpcrt4: Fix a copy-and-paste error in RpcAuthInfo_Release that caused a double free of memory.
This commit is contained in:
parent
b64ceefde3
commit
5191498564
@ -1001,7 +1001,7 @@ ULONG RpcAuthInfo_Release(RpcAuthInfo *AuthInfo)
|
||||
{
|
||||
HeapFree(GetProcessHeap(), 0, AuthInfo->nt_identity->User);
|
||||
HeapFree(GetProcessHeap(), 0, AuthInfo->nt_identity->Domain);
|
||||
HeapFree(GetProcessHeap(), 0, AuthInfo->nt_identity->User);
|
||||
HeapFree(GetProcessHeap(), 0, AuthInfo->nt_identity->Password);
|
||||
HeapFree(GetProcessHeap(), 0, AuthInfo->nt_identity);
|
||||
}
|
||||
HeapFree(GetProcessHeap(), 0, AuthInfo);
|
||||
|
Loading…
x
Reference in New Issue
Block a user