summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_pam.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-04-19 15:38:25 +0200
committerVolker Lendecke <vl@samba.org>2012-04-19 20:52:27 +0200
commit3f18316358c15fc13ca676b497c7f510b1d5bd85 (patch)
tree5c4d169eaac96f92cb29b3a642b0147668262d45 /source3/winbindd/winbindd_pam.c
parente573f114681533425eded76f1322a9327308c40e (diff)
downloadsamba-3f18316358c15fc13ca676b497c7f510b1d5bd85.tar.gz
samba-3f18316358c15fc13ca676b497c7f510b1d5bd85.tar.bz2
samba-3f18316358c15fc13ca676b497c7f510b1d5bd85.zip
s3: Fix Coverity ID 2727 to 2740 -- UNINIT
Diffstat (limited to 'source3/winbindd/winbindd_pam.c')
-rw-r--r--source3/winbindd/winbindd_pam.c4
1 files changed, 2 insertions, 2 deletions
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 */