Cygwin: create_token: Return NULL, not INVALID_HANDLE_VALUE

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen
2019-01-25 19:58:21 +01:00
parent 3a1ed0ef70
commit 0e3fd33321
2 changed files with 5 additions and 5 deletions

View File

@@ -3546,10 +3546,9 @@ seteuid32 (uid_t uid)
if (!(new_token = lsaauth (usersid, groups)))
{
debug_printf ("lsaauth failed, try create_token.");
new_token = create_token (usersid, groups);
if (new_token == INVALID_HANDLE_VALUE)
if (!(new_token = create_token (usersid, groups)))
{
debug_printf ("create_token failed, bail out of here");
debug_printf ("create_token failed, bail out");
cygheap->user.reimpersonate ();
return -1;
}