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 | 27655be3c1708d447b046a2b0d8b2013eeb21835 (patch) | |
tree | 5002e60b8cdceb4ede1b2ed496ee3b9b0b307fc7 /source3/auth/auth_domain.c | |
parent | a78fd0468156dd789c57adffd5e64adbabdedcc3 (diff) | |
download | samba-27655be3c1708d447b046a2b0d8b2013eeb21835.tar.gz samba-27655be3c1708d447b046a2b0d8b2013eeb21835.tar.xz samba-27655be3c1708d447b046a2b0d8b2013eeb21835.zip |
fixed a crash bug in domain auth caused by an uninitialised nt_status
(This used to be commit 0b0b937b58f4bf4e005fb622f0db19175fc46a47)
Diffstat (limited to 'source3/auth/auth_domain.c')
-rw-r--r-- | source3/auth/auth_domain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_domain.c b/source3/auth/auth_domain.c index a81af3b738..eba61114d6 100644 --- a/source3/auth/auth_domain.c +++ b/source3/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; /* |