* cygheap.h (cygheap_user::cygheap_user): Initialize token to

INVALID_HANDLE_VALUE.
        * uinfo.cc (uinfo_init): Close token handle if needed.
This commit is contained in:
Corinna Vinschen
2001-06-04 14:29:54 +00:00
parent ac5561f2ed
commit f7fa593d6b
3 changed files with 10 additions and 1 deletions

View File

@ -161,6 +161,8 @@ uinfo_init ()
Setting `impersonated' to TRUE seems to be wrong but it
isn't. Impersonated is thought as "Current User and `token'
are coincident". See seteuid() for the mechanism behind that. */
if (cygheap->user.token != INVALID_HANDLE_VALUE)
CloseHandle (cygheap->user.token);
cygheap->user.token = INVALID_HANDLE_VALUE;
cygheap->user.impersonated = TRUE;