Fix PKCS7 memory leak
authorMatt Caswell <matt@openssl.org>
Mon, 18 Apr 2016 09:35:34 +0000 (10:35 +0100)
committerMatt Caswell <matt@openssl.org>
Mon, 18 Apr 2016 13:59:23 +0000 (14:59 +0100)
commit36c6f0ad0f1464d47493309c24e2275af7f09c1e
tree23eb9a503bda128828969591cf3be738032515d7
parent14f051a0ae3d752c50f419d3583e85fdf4c5bfc9
Fix PKCS7 memory leak

Commit f0e0fd51f was a bit over-zealous in removing a call to
X509_STORE_CTX_cleanup(). The call in question was in a loop and was
required to cleanup resources used on each iteration of the loop. Removing
this resulted in a memory leak.

Reviewed-by: Richard Levitte <levitte@openssl.org>
crypto/pkcs7/pk7_smime.c