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?
Original issue reported on code.google.com by 1983-01...@gmx.net on 20 Aug 2014 at 5:13
Original issue reported on code.google.com by
1983-01...@gmx.net
on 20 Aug 2014 at 5:13