From: Andreas Schneider Date: Tue, 24 Oct 2023 09:58:10 +0000 (+0200) Subject: s3:utils: Call gfree_all() before exit in ntlm_auth X-Git-Tag: talloc-2.4.2~1118 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8482d46faba020c442b161d937d034fd1d444605;p=thirdparty%2Fsamba.git s3:utils: Call gfree_all() before exit in ntlm_auth Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index 054d1bddcb3..6660a31673a 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -2849,7 +2849,7 @@ enum { } /* Exit code */ - + gfree_all(); poptFreeContext(pc); TALLOC_FREE(frame); return 0;