diff options
author | Volker Lendecke <vl@samba.org> | 2009-02-13 11:17:42 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-02-13 12:15:04 +0100 |
commit | 5b6c4287638eb556270cec170e33004af24d7691 (patch) | |
tree | 7ae220f16010f046578e15967fcf5e1e914be1de /source3/utils | |
parent | 0844cca1d5e4579b54af7d03509f3f97fac43bdc (diff) | |
download | samba-5b6c4287638eb556270cec170e33004af24d7691.tar.gz samba-5b6c4287638eb556270cec170e33004af24d7691.tar.bz2 samba-5b6c4287638eb556270cec170e33004af24d7691.zip |
Fix an uninitialized variable, introdued with 4d100f2f
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/ntlm_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index ab5a743f9d..9bc0c60b7b 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -523,7 +523,7 @@ static NTSTATUS winbind_pw_check(struct ntlmssp_state *ntlmssp_state, DATA_BLOB { static const char zeros[16] = { 0, }; NTSTATUS nt_status; - char *error_string; + char *error_string = NULL; uint8 lm_key[8]; uint8 user_sess_key[16]; char *unix_name = NULL; |