mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 05:52:57 +00:00
[REACTOS] Fix GetTokenInformation() usage (#2997)
The first call to GetTokenInformation is used to determine the size of a TokenInformation buffer. It should fail and return ERROR_INSUFFICIENT_BUFFER
This commit is contained in:
parent
b338fb7beb
commit
98bbe8358c
4 changed files with 11 additions and 12 deletions
|
@ -65,7 +65,7 @@ RunningAsSYSTEM(VOID)
|
|||
return FALSE;
|
||||
|
||||
/* Retrieve token's information */
|
||||
if (!GetTokenInformation(hToken, TokenUser, NULL, 0, &cbTokenBuffer) &&
|
||||
if (GetTokenInformation(hToken, TokenUser, NULL, 0, &cbTokenBuffer) ||
|
||||
GetLastError() != ERROR_INSUFFICIENT_BUFFER)
|
||||
{
|
||||
goto Quit;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue