diff options
author | Rich Salz <rsalz@openssl.org> | 2015-03-25 16:31:18 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-03-25 16:31:18 +0100 |
commit | ca3a82c3b364e1e584546f0f3bbb938b0b472580 (patch) | |
tree | 06c73d297f19629c1bf56bbf06dd2d443d4ac78f /apps/dgst.c | |
parent | Support key loading from certificate file (diff) | |
download | openssl-ca3a82c3b364e1e584546f0f3bbb938b0b472580.tar.xz openssl-ca3a82c3b364e1e584546f0f3bbb938b0b472580.zip |
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/dgst.c')
-rw-r--r-- | apps/dgst.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/dgst.c b/apps/dgst.c index 95e5fa3fc7..ac3b583793 100644 --- a/apps/dgst.c +++ b/apps/dgst.c @@ -518,8 +518,7 @@ int MAIN(int argc, char **argv) OPENSSL_cleanse(buf, BUFSIZE); OPENSSL_free(buf); } - if (in != NULL) - BIO_free(in); + BIO_free(in); if (passin) OPENSSL_free(passin); BIO_free_all(out); @@ -530,8 +529,7 @@ int MAIN(int argc, char **argv) sk_OPENSSL_STRING_free(macopts); if (sigbuf) OPENSSL_free(sigbuf); - if (bmd != NULL) - BIO_free(bmd); + BIO_free(bmd); apps_shutdown(); OPENSSL_EXIT(err); } |