diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-11-29 14:46:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:13 -0500 |
commit | 692e1a214c8478ea9199542920b7083138f90691 (patch) | |
tree | 6784a2949c1ab9007ab7a91a0ad115351c6b8200 /source4/librpc | |
parent | 15543f18acc9040fd3213e826147fe5604bb1ae1 (diff) | |
download | samba-692e1a214c8478ea9199542920b7083138f90691.tar.gz samba-692e1a214c8478ea9199542920b7083138f90691.tar.bz2 samba-692e1a214c8478ea9199542920b7083138f90691.zip |
r4001: fix segfault fix auth failed
metze
(This used to be commit 6a7eee1d9917e0884072354dddae568645798da5)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/rpc/dcerpc_auth.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/librpc/rpc/dcerpc_auth.c b/source4/librpc/rpc/dcerpc_auth.c index af138ffe2c..7e581992fa 100644 --- a/source4/librpc/rpc/dcerpc_auth.c +++ b/source4/librpc/rpc/dcerpc_auth.c @@ -113,6 +113,7 @@ done: talloc_destroy(mem_ctx); if (!NT_STATUS_IS_OK(status)) { + gensec_end(&p->security_state.generic_state); ZERO_STRUCT(p->security_state); } else { /* Authenticated connections use the generic session key */ |