diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-01-15 05:55:22 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-01-15 05:55:22 +0000 |
commit | 10abfb3f87cdbae204a5b49160ef8cbd9e56c090 (patch) | |
tree | 8e812ae1839fc6c45f2d546207d6079dd3b6a4aa /source3/auth | |
parent | ec894b56953a48a3591f3a127c7459f95c9935e3 (diff) | |
download | samba-10abfb3f87cdbae204a5b49160ef8cbd9e56c090.tar.gz samba-10abfb3f87cdbae204a5b49160ef8cbd9e56c090.tar.bz2 samba-10abfb3f87cdbae204a5b49160ef8cbd9e56c090.zip |
Crash fixes:
- fix a crash when a second NTLMSSP session tried to free the first
- fix a crash due to some NULL pointers in the Add Printer Wizard (or read
printer code too it appears). As far as I can tell it's just that the
GUID just might not exist.
Andrew Bartlett
(This used to be commit 51b1413056b0d001076ff47a755eb35baa2d9e6d)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_ntlmssp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/auth/auth_ntlmssp.c b/source3/auth/auth_ntlmssp.c index f5e5c987ba..f165322f7a 100644 --- a/source3/auth/auth_ntlmssp.c +++ b/source3/auth/auth_ntlmssp.c @@ -58,6 +58,7 @@ NTSTATUS ntlmssp_server_end(NTLMSSP_STATE **ntlmssp_state) } talloc_destroy(mem_ctx); + *ntlmssp_state = NULL; return NT_STATUS_OK; } |