diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-01-11 13:14:28 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-01-11 13:14:28 +0000 |
commit | 0b0b937b58f4bf4e005fb622f0db19175fc46a47 (patch) | |
tree | 08893284f3d02cfcdd3fb45e85365fd843d354ff /source/auth | |
parent | 1c5e19a418136c0ae524e62a4907501212ebac3d (diff) | |
download | samba-0b0b937b58f4bf4e005fb622f0db19175fc46a47.tar.gz samba-0b0b937b58f4bf4e005fb622f0db19175fc46a47.tar.xz samba-0b0b937b58f4bf4e005fb622f0db19175fc46a47.zip |
fixed a crash bug in domain auth caused by an uninitialised nt_status
Diffstat (limited to 'source/auth')
-rw-r--r-- | source/auth/auth_domain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/auth/auth_domain.c b/source/auth/auth_domain.c index a81af3b7381..eba61114d66 100644 --- a/source/auth/auth_domain.c +++ b/source/auth/auth_domain.c @@ -242,7 +242,7 @@ static NTSTATUS domain_client_validate(TALLOC_CTX *mem_ctx, fstring remote_machine; NET_USER_INFO_3 info3; struct cli_state *cli; - NTSTATUS nt_status; + NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL; struct passwd *pass; /* |