diff options
author | todd stecher <todd.stecher@gmail.com> | 2009-02-09 13:25:59 -0800 |
---|---|---|
committer | Steven Danneman <steven.danneman@isilon.com> | 2009-02-10 14:43:14 -0800 |
commit | 9d4d2f70cbf83919a11c194c8234de269c5d91ee (patch) | |
tree | a8379f0ebb9a6d23f78109e1beb57541b279cbd2 /source3/auth/pampass.c | |
parent | fdd282afa3e80712790c5bbac84bf4f88644692a (diff) | |
download | samba-9d4d2f70cbf83919a11c194c8234de269c5d91ee.tar.gz samba-9d4d2f70cbf83919a11c194c8234de269c5d91ee.tar.xz samba-9d4d2f70cbf83919a11c194c8234de269c5d91ee.zip |
S3: Fixes for coverity issues.
Diffstat (limited to 'source3/auth/pampass.c')
-rw-r--r-- | source3/auth/pampass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/pampass.c b/source3/auth/pampass.c index 4312b771c9..4eec269a82 100644 --- a/source3/auth/pampass.c +++ b/source3/auth/pampass.c @@ -276,7 +276,7 @@ static int smb_pam_passchange_conv(int num_msg, fstring current_prompt; fstring current_reply; struct smb_pam_userdata *udp = (struct smb_pam_userdata *)appdata_ptr; - struct chat_struct *pw_chat= make_pw_chat(lp_passwd_chat()); + struct chat_struct *pw_chat; struct chat_struct *t; bool found; *resp = NULL; @@ -286,7 +286,7 @@ static int smb_pam_passchange_conv(int num_msg, if (num_msg <= 0) return PAM_CONV_ERR; - if (pw_chat == NULL) + if ((pw_chat = make_pw_chat(lp_passwd_chat())) == NULL) return PAM_CONV_ERR; /* |