From 5b6c4287638eb556270cec170e33004af24d7691 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 13 Feb 2009 11:17:42 +0100 Subject: Fix an uninitialized variable, introdued with 4d100f2f --- source3/utils/ntlm_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/utils/ntlm_auth.c') 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; -- cgit