1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

r17903: Fix null deref caught by Stanford checker. Don't

call ntlmssp_end on a null pointer ! (Doh !).
Jeremy.
This commit is contained in:
Jeremy Allison
2006-08-29 01:25:57 +00:00
committed by Gerald (Jerry) Carter
parent e8b0649fe1
commit 7b53932b51

View File

@ -1344,7 +1344,6 @@ static void manage_client_ntlmssp_targ(SPNEGO_DATA spnego)
if (client_ntlmssp_state == NULL) {
DEBUG(1, ("Got NTLMSSP tArg without a client state\n"));
x_fprintf(x_stdout, "BH\n");
ntlmssp_end(&client_ntlmssp_state);
return;
}