Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
Description
In auth_spnego_sspi.c from line 97
if (SecIsValidHandle(&ctx->sspi_credentials))
{ FreeCredentialsHandle(&ctx->sspi_context); SecInvalidateHandle(&ctx->sspi_context); }I guess this should read
if (SecIsValidHandle(&ctx->sspi_credentials))
{ FreeCredentialsHandle(&ctx->sspi_credentials); SecInvalidateHandle(&ctx->sspi_credentials); }Shouldn't it?