]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
auth: Fix CID 1458420 Null pointer dereferences (REVERSE_INULL)
authorVolker Lendecke <vl@samba.org>
Wed, 12 Feb 2020 14:39:54 +0000 (15:39 +0100)
committerKarolin Seeger <kseeger@samba.org>
Wed, 19 Feb 2020 08:54:53 +0000 (08:54 +0000)
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14247

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
(cherry picked from commit 503fc8f2ba662ecbec0788bd1710440464dc5cfd)

source3/auth/auth_sam.c

index cdb8453b3115696dcbecd02c627e4cc0dd9cee09..3e89febb74beadd737ceee7ce2ff0f9836eb5b9b 100644 (file)
@@ -77,12 +77,13 @@ static NTSTATUS auth_samstrict_auth(const struct auth_context *auth_context,
                                    const struct auth_usersupplied_info *user_info,
                                    struct auth_serversupplied_info **server_info)
 {
-       const char *effective_domain = user_info->mapped.domain_name;
+       const char *effective_domain = NULL;
        bool is_local_name, is_my_domain;
 
        if (!user_info || !auth_context) {
                return NT_STATUS_LOGON_FAILURE;
        }
+       effective_domain = user_info->mapped.domain_name;
 
        if (user_info->mapped.account_name == NULL ||
            user_info->mapped.account_name[0] == '\0')