From 944494d350fa0e42aa8a87849fa7168731f3b0a6 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 19 Jul 2010 13:53:34 -0400 Subject: s3-auth: Remove unused variable. It was a spurious remnant after a rebase. --- source3/auth/auth_ntlmssp.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'source3/auth/auth_ntlmssp.c') diff --git a/source3/auth/auth_ntlmssp.c b/source3/auth/auth_ntlmssp.c index bebb86ee17..a71c02b14f 100644 --- a/source3/auth/auth_ntlmssp.c +++ b/source3/auth/auth_ntlmssp.c @@ -265,7 +265,6 @@ NTSTATUS auth_ntlmssp_start(struct auth_ntlmssp_state **auth_ntlmssp_state) const char *dns_name; char *dns_domain; struct auth_ntlmssp_state *ans; - struct ntlmssp_state *ntlmssp_state; struct auth_context *auth_context; if ((enum server_types)lp_server_role() == ROLE_STANDALONE) { @@ -286,7 +285,6 @@ NTSTATUS auth_ntlmssp_start(struct auth_ntlmssp_state **auth_ntlmssp_state) ans = talloc_zero(NULL, struct auth_ntlmssp_state); if (!ans) { DEBUG(0,("auth_ntlmssp_start: talloc failed!\n")); - TALLOC_FREE(ntlmssp_state); return NT_STATUS_NO_MEMORY; } -- cgit