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 /crypto/asn1/bio_ndef.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 'crypto/asn1/bio_ndef.c')
-rw-r--r-- | crypto/asn1/bio_ndef.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/asn1/bio_ndef.c b/crypto/asn1/bio_ndef.c index 4a73ca9eac..1018787a63 100644 --- a/crypto/asn1/bio_ndef.c +++ b/crypto/asn1/bio_ndef.c @@ -142,8 +142,7 @@ BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it) return sarg.ndef_bio; err: - if (asn_bio) - BIO_free(asn_bio); + BIO_free(asn_bio); if (ndef_aux) OPENSSL_free(ndef_aux); return NULL; |