mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[NTDLL_APITEST] Free the allocated memory block when we're done
This fixes a memory leak where we allocate a buffer for token statistics with RtlAllocateHeap routine but we never free it afterwards.
This commit is contained in:
parent
a1faa1cc6d
commit
fe0415a4ba
1 changed files with 5 additions and 1 deletions
|
@ -153,7 +153,11 @@ DuplicateTokenAsEffective(VOID)
|
|||
trace("Number of privileges of effective only token -- %lu\n", TokenStats->PrivilegeCount);
|
||||
trace("Number of groups of effective only token -- %lu\n", TokenStats->GroupCount);
|
||||
|
||||
/* We finished our tests, close the handles now */
|
||||
/*
|
||||
* We finished our tests, free the memory
|
||||
* block and close the handles now.
|
||||
*/
|
||||
RtlFreeHeap(RtlGetProcessHeap(), 0, TokenStats);
|
||||
CloseHandle(TokenHandle),
|
||||
CloseHandle(DuplicatedTokenHandle);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue