From f7acb36784fbc8fed72c70d51ef0fbb8493edf8f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 27 Feb 2012 15:18:56 +0100 Subject: s4:auth/gensec/schannel: make a copy of netlogon_creds_CredentialState in the client This is really a copy for the lifetime of the rpc connection. metze --- source4/auth/gensec/schannel.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'source4/auth') diff --git a/source4/auth/gensec/schannel.c b/source4/auth/gensec/schannel.c index 51be445dbb..4c846c02c8 100644 --- a/source4/auth/gensec/schannel.c +++ b/source4/auth/gensec/schannel.c @@ -73,7 +73,14 @@ static NTSTATUS schannel_update(struct gensec_security *gensec_security, TALLOC_ return NT_STATUS_OK; } - state->creds = talloc_reference(state, cli_credentials_get_netlogon_creds(gensec_security->credentials)); + state->creds = cli_credentials_get_netlogon_creds(gensec_security->credentials); + if (state->creds == NULL) { + return NT_STATUS_INVALID_PARAMETER_MIX; + } + state->creds = netlogon_creds_copy(state, state->creds); + if (state->creds == NULL) { + return NT_STATUS_NO_MEMORY; + } bind_schannel.MessageType = NL_NEGOTIATE_REQUEST; #if 0 -- cgit