diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-26 03:50:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:59:16 -0500 |
commit | 9a62dce0ac2dd751c9cc3b9906eec8c4fe7c51b7 (patch) | |
tree | a6fd92fd12aae07a2bab782feecd66b4369b61f7 /source4/libcli/auth/gensec_ntlmssp.c | |
parent | 764eddb69647681f784f343a122251ca1ecf62df (diff) | |
download | samba-9a62dce0ac2dd751c9cc3b9906eec8c4fe7c51b7.tar.gz samba-9a62dce0ac2dd751c9cc3b9906eec8c4fe7c51b7.tar.bz2 samba-9a62dce0ac2dd751c9cc3b9906eec8c4fe7c51b7.zip |
r2648: - use a destructor on struct server_connection to simplify the
connection termination cleanup, and to ensure that the event
contexts are properly removed for every process model
- gave auth_context the new talloc treatment, which removes another
source of memory leaks.
(This used to be commit 230e1cd777b0fba82dffcbd656cfa23c155d0560)
Diffstat (limited to 'source4/libcli/auth/gensec_ntlmssp.c')
-rw-r--r-- | source4/libcli/auth/gensec_ntlmssp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/libcli/auth/gensec_ntlmssp.c b/source4/libcli/auth/gensec_ntlmssp.c index 7270797f52..40f3e605eb 100644 --- a/source4/libcli/auth/gensec_ntlmssp.c +++ b/source4/libcli/auth/gensec_ntlmssp.c @@ -65,7 +65,7 @@ static NTSTATUS auth_ntlmssp_set_challenge(struct ntlmssp_state *ntlmssp_state, SMB_ASSERT(challenge->length == 8); - auth_context->challenge = data_blob_talloc(auth_context->mem_ctx, + auth_context->challenge = data_blob_talloc(auth_context, challenge->data, challenge->length); auth_context->challenge_set_by = "NTLMSSP callback (NTLM2)"; @@ -189,7 +189,8 @@ static NTSTATUS gensec_ntlmssp_server_start(struct gensec_security *gensec_secur } ntlmssp_state = gensec_ntlmssp_state->ntlmssp_state; - if (!NT_STATUS_IS_OK(nt_status = make_auth_context_subsystem(&gensec_ntlmssp_state->auth_context))) { + nt_status = make_auth_context_subsystem(gensec_security, &gensec_ntlmssp_state->auth_context); + if (!NT_STATUS_IS_OK(nt_status)) { return nt_status; } |