Properly close token in sspi authentication
We can never leak more than one token, but we shouldn't do that. We don't bother closing it in the error paths since the process will exit shortly anyway. Christian Ullrich
This commit is contained in:
parent
be2b276514
commit
df0bd5a0f7
@ -1464,6 +1464,8 @@ pg_SSPI_recvauth(Port *port)
|
|||||||
(errmsg_internal("could not get user token: error code %lu",
|
(errmsg_internal("could not get user token: error code %lu",
|
||||||
GetLastError())));
|
GetLastError())));
|
||||||
|
|
||||||
|
CloseHandle(token);
|
||||||
|
|
||||||
if (!LookupAccountSid(NULL, tokenuser->User.Sid, accountname, &accountnamesize,
|
if (!LookupAccountSid(NULL, tokenuser->User.Sid, accountname, &accountnamesize,
|
||||||
domainname, &domainnamesize, &accountnameuse))
|
domainname, &domainnamesize, &accountnameuse))
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user