From 8482d46faba020c442b161d937d034fd1d444605 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 24 Oct 2023 11:58:10 +0200 Subject: [PATCH] s3:utils: Call gfree_all() before exit in ntlm_auth Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- source3/utils/ntlm_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3