s3-auth: Remember to always free the talloc_stackframe() in auth_samba4
authorAndrew Bartlett <abartlet@samba.org>
Tue, 1 Apr 2014 23:12:14 +0000 (12:12 +1300)
committerDavid Disseldorp <ddiss@samba.org>
Wed, 2 Apr 2014 09:05:46 +0000 (11:05 +0200)
Change-Id: I94469de9d463ee90365bae43094231efaf0a7d8c
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
source3/auth/auth_samba4.c

index 49a77e8d12279db6c816e1607866ad221a32d9f5..146df9d02af7467a254126570423f8b17c4af371 100644 (file)
@@ -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;
        }