commit | d64070838ebba86f00fb3755df5d3e65106e1628 | [log] [tgz] |
---|---|---|
author | Rich Salz <rsalz@akamai.com> | Tue Mar 24 10:17:37 2015 -0400 |
committer | Rich Salz <rsalz@akamai.com> | Tue Mar 24 23:17:16 2015 -0400 |
tree | def90b3063d9ebe0f53920604d02b9786216e327 | |
parent | 1300705a47b9c9498b15a384c6c5348adc342e2c [diff] [blame] |
free NULL cleanup Start ensuring all OpenSSL "free" routines allow NULL, and remove any if check before calling them. This gets DH_free, DSA_free, RSA_free Reviewed-by: Matt Caswell <matt@openssl.org>
diff --git a/crypto/dsa/dsa_lib.c b/crypto/dsa/dsa_lib.c index eb13fbb..bfd9106 100644 --- a/crypto/dsa/dsa_lib.c +++ b/crypto/dsa/dsa_lib.c
@@ -315,8 +315,7 @@ return ret; err: - if (ret != NULL) - DH_free(ret); + DH_free(ret); return NULL; } #endif