From 10abfb3f87cdbae204a5b49160ef8cbd9e56c090 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 15 Jan 2003 05:55:22 +0000 Subject: 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) --- source3/auth/auth_ntlmssp.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/auth') 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; } -- cgit