commit | b548a1f11c06ccdfa4f52a539912d22d77ee309e | [log] [tgz] |
---|---|---|
author | Rich Salz <rsalz@openssl.org> | Fri May 01 10:02:07 2015 -0400 |
committer | Rich Salz <rsalz@openssl.org> | Fri May 01 10:02:07 2015 -0400 |
tree | 37ff8792ddf09e4805aa3ba76b805923d3c52734 | |
parent | 33fbca83dcd05b77f807fab205c4523b8cfe85b5 [diff] [blame] |
free null cleanup finale Don't check for NULL before calling OPENSSL_free Reviewed-by: Richard Levitte <levitte@openssl.org>
diff --git a/apps/passwd.c b/apps/passwd.c index c529792..8dd8542 100644 --- a/apps/passwd.c +++ b/apps/passwd.c
@@ -284,10 +284,8 @@ end: ERR_print_errors(bio_err); - if (salt_malloc) - OPENSSL_free(salt_malloc); - if (passwd_malloc) - OPENSSL_free(passwd_malloc); + OPENSSL_free(salt_malloc); + OPENSSL_free(passwd_malloc); BIO_free(in); return (ret); }