commit | ca3a82c3b364e1e584546f0f3bbb938b0b472580 | [log] [tgz] |
---|---|---|
author | Rich Salz <rsalz@openssl.org> | Wed Mar 25 11:31:18 2015 -0400 |
committer | Rich Salz <rsalz@openssl.org> | Wed Mar 25 11:31:18 2015 -0400 |
tree | 06c73d297f19629c1bf56bbf06dd2d443d4ac78f | |
parent | 2011b169fa90edd4d986e7dbbd3d64587d316a22 [diff] [blame] |
free NULL cleanup This commit handles BIO_ACCEPT_free BIO_CB_FREE BIO_CONNECT_free BIO_free BIO_free_all BIO_vfree Reviewed-by: Matt Caswell <matt@openssl.org>
diff --git a/apps/dsa.c b/apps/dsa.c index 8d085bc..1ea0d73 100644 --- a/apps/dsa.c +++ b/apps/dsa.c
@@ -356,10 +356,8 @@ } else ret = 0; end: - if (in != NULL) - BIO_free(in); - if (out != NULL) - BIO_free_all(out); + BIO_free(in); + BIO_free_all(out); DSA_free(dsa); if (passin) OPENSSL_free(passin);