From 3f18316358c15fc13ca676b497c7f510b1d5bd85 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 19 Apr 2012 15:38:25 +0200 Subject: s3: Fix Coverity ID 2727 to 2740 -- UNINIT --- source3/winbindd/winbindd_pam.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c index 6757f3611e..216e1ffc33 100644 --- a/source3/winbindd/winbindd_pam.c +++ b/source3/winbindd/winbindd_pam.c @@ -2213,8 +2213,8 @@ enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domai state->request->data.chng_pswd_auth_crap.old_lm_hash_enc, state->request->data.chng_pswd_auth_crap.old_lm_hash_enc_len); } else { - new_lm_password.length = 0; - old_lm_hash_enc.length = 0; + new_lm_password = data_blob_null; + old_lm_hash_enc = data_blob_null; } /* Get sam handle */ -- cgit