advapi32/tests: Explicitly check return value of GetTokenInformation.
This commit is contained in:
parent
e9eec98d5c
commit
a176655414
|
@ -4290,7 +4290,8 @@ static void test_GetSecurityInfo(void)
|
||||||
win_skip("Failed to get current user token\n");
|
win_skip("Failed to get current user token\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
GetTokenInformation(token, TokenUser, b, l, &l);
|
bret = GetTokenInformation(token, TokenUser, b, l, &l);
|
||||||
|
ok(bret, "GetTokenInformation(TokenUser) failed with error %d\n", GetLastError());
|
||||||
CloseHandle( token );
|
CloseHandle( token );
|
||||||
user_sid = ((TOKEN_USER *)b)->User.Sid;
|
user_sid = ((TOKEN_USER *)b)->User.Sid;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue