From d13b38dc9681997d35ba8085b1f944f2b31f50bf Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 2 Apr 2014 12:12:14 +1300 Subject: [PATCH] s3-auth: Remember to always free the talloc_stackframe() in auth_samba4 Change-Id: I94469de9d463ee90365bae43094231efaf0a7d8c Signed-off-by: Andrew Bartlett Reviewed-by: David Disseldorp --- source3/auth/auth_samba4.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/auth/auth_samba4.c b/source3/auth/auth_samba4.c index 49a77e8d122..146df9d02af 100644 --- a/source3/auth/auth_samba4.c +++ b/source3/auth/auth_samba4.c @@ -120,12 +120,14 @@ static NTSTATUS check_samba4_security(const struct auth_context *auth_context, nt_status = auth_context_set_challenge(auth4_context, auth_context->challenge.data, "auth_samba4"); if (!NT_STATUS_IS_OK(nt_status)) { TALLOC_FREE(auth4_context); + TALLOC_FREE(frame); return nt_status; } nt_status = auth_check_password(auth4_context, auth4_context, user_info, &user_info_dc); if (!NT_STATUS_IS_OK(nt_status)) { TALLOC_FREE(auth4_context); + TALLOC_FREE(frame); return nt_status; } -- 2.11.4.GIT