X509_STORE_CTX_cleanup(): Use internally so no need to call explicitly
[openssl.git] / crypto / pkcs7 / pk7_doit.c
index e962e9368824bf13209f21266259a1dfd69692a3..a979544aeb4fee4786201a714d8170355687a963 100644 (file)
@@ -1053,10 +1053,8 @@ int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio,
     i = X509_verify_cert(ctx);
     if (i <= 0) {
         ERR_raise(ERR_LIB_PKCS7, ERR_R_X509_LIB);
-        X509_STORE_CTX_cleanup(ctx);
         goto err;
     }
-    X509_STORE_CTX_cleanup(ctx);
 
     return PKCS7_signatureVerify(bio, p7, si, x509);
  err: