1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

r8913: Fix memory leak in -r 8912: Free the right thing, rather than blob1 'twice'.

Andrew Bartlett
(This used to be commit 7adeba4036d9d83a10d8944c81ea3fab0267db21)
This commit is contained in:
Andrew Bartlett 2005-08-02 07:07:43 +00:00 committed by Gerald (Jerry) Carter
parent a3947eaa4e
commit f31965b549

View File

@ -681,7 +681,7 @@ static int reply_sesssetup_and_X_spnego(connection_struct *conn, char *inbuf,
reply_spnego_ntlmssp(conn, inbuf, outbuf, vuid,
&vuser->auth_ntlmssp_state,
&chal, nt_status, False);
data_blob_free(&blob1);
data_blob_free(&chal);
return -1;
}