summaryrefslogtreecommitdiff
path: root/source4/librpc/rpc/dcerpc_schannel.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-10-20 02:10:46 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:01:56 -0500
commita71b9135710995a381f0bfaea29fe1a9da93ce20 (patch)
tree45e2a9fa2fdc5b4fb5074dc3ee93a2e25f88d549 /source4/librpc/rpc/dcerpc_schannel.c
parent1ee3a7419e04b0d7574792ceebecc89b4a849a73 (diff)
downloadsamba-a71b9135710995a381f0bfaea29fe1a9da93ce20.tar.gz
samba-a71b9135710995a381f0bfaea29fe1a9da93ce20.tar.bz2
samba-a71b9135710995a381f0bfaea29fe1a9da93ce20.zip
r3075: Initialise (and check for intialisation) of the private pointer to
ensure we don't segfault on the cleanup from an incomplete schannel bind. Andrew Bartlett (This used to be commit 173f29a1d8db111d5adb258eead5379d681d3bb2)
Diffstat (limited to 'source4/librpc/rpc/dcerpc_schannel.c')
-rw-r--r--source4/librpc/rpc/dcerpc_schannel.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/librpc/rpc/dcerpc_schannel.c b/source4/librpc/rpc/dcerpc_schannel.c
index 7bb871811a..700a2a40fb 100644
--- a/source4/librpc/rpc/dcerpc_schannel.c
+++ b/source4/librpc/rpc/dcerpc_schannel.c
@@ -279,9 +279,13 @@ static NTSTATUS dcerpc_schannel_start(struct gensec_security *gensec_security)
static NTSTATUS dcerpc_schannel_server_start(struct gensec_security *gensec_security)
{
NTSTATUS status;
+ struct dcerpc_schannel_state *dce_schan_state;
status = dcerpc_schannel_start(gensec_security);
+ dce_schan_state = gensec_security->private_data;
+ dce_schan_state->schannel_state = NULL;
+
if (!NT_STATUS_IS_OK(status)) {
return status;
}