[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:
George Bișoc 2021-10-23 09:58:50 +02:00
parent a1faa1cc6d
commit fe0415a4ba
No known key found for this signature in database
GPG key ID: 688C4FBE25D7DEF6

View file

@ -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);
}