From: Todd Short Date: Mon, 22 Jan 2018 19:30:24 +0000 (-0500) Subject: Fix error-path memory leak in asn_mime.c X-Git-Tag: OpenSSL_1_0_2o~42 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d19bf137ba24ce15ceb1e37e0093f1b7242340f1;p=oweals%2Fopenssl.git Fix error-path memory leak in asn_mime.c Reviewed-by: Bernd Edlinger Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/5142) (cherry picked from commit a26dd465b21d8def440c16b6bd90227b03e12e02) --- diff --git a/crypto/asn1/asn_mime.c b/crypto/asn1/asn_mime.c index 5170906c62..e5bdaa6340 100644 --- a/crypto/asn1/asn_mime.c +++ b/crypto/asn1/asn_mime.c @@ -473,6 +473,7 @@ ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it) if (!(hdr = mime_hdr_find(headers, "content-type")) || !hdr->value) { sk_MIME_HEADER_pop_free(headers, mime_hdr_free); ASN1err(ASN1_F_SMIME_READ_ASN1, ASN1_R_NO_SIG_CONTENT_TYPE); + sk_BIO_pop_free(parts, BIO_vfree); return NULL; }