diff options
Diffstat (limited to 'modules/pam_stress')
-rw-r--r-- | modules/pam_stress/pam_stress.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/pam_stress/pam_stress.c b/modules/pam_stress/pam_stress.c index b2c55586..d0f54016 100644 --- a/modules/pam_stress/pam_stress.c +++ b/modules/pam_stress/pam_stress.c @@ -476,10 +476,8 @@ int pam_sm_chauthtok(pam_handle_t *pamh, int flags, resp = NULL; retval = converse(pamh,i,pmsg,&resp); - if (txt) { - free(txt); - txt = NULL; /* clean up */ - } + free(txt); + txt = NULL; /* clean up */ if (retval != PAM_SUCCESS) { return retval; } |