diff options
author | Rich Salz <rsalz@openssl.org> | 2015-03-25 11:31:18 -0400 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-03-25 11:31:18 -0400 |
commit | ca3a82c3b364e1e584546f0f3bbb938b0b472580 (patch) | |
tree | 06c73d297f19629c1bf56bbf06dd2d443d4ac78f /apps/rsa.c | |
parent | 2011b169fa90edd4d986e7dbbd3d64587d316a22 (diff) | |
download | openssl-new-ca3a82c3b364e1e584546f0f3bbb938b0b472580.tar.gz |
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>
Diffstat (limited to 'apps/rsa.c')
-rw-r--r-- | apps/rsa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/rsa.c b/apps/rsa.c index ac4a3c43ef..2f3f871a33 100644 --- a/apps/rsa.c +++ b/apps/rsa.c @@ -422,8 +422,7 @@ int MAIN(int argc, char **argv) } else ret = 0; end: - if (out != NULL) - BIO_free_all(out); + BIO_free_all(out); RSA_free(rsa); if (passin) OPENSSL_free(passin); |