From: Dr. Stephen Henson Date: Thu, 29 Nov 2012 19:15:27 +0000 (+0000) Subject: PR: 2803 X-Git-Tag: OpenSSL_1_0_2-beta1~554 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b5f57f455a521153616783f195c6990779392372;p=oweals%2Fopenssl.git PR: 2803 Submitted by: jean-etienne.schwartz@bull.net In OCSP_basic_varify return an error if X509_STORE_CTX_init fails. --- diff --git a/crypto/ocsp/ocsp_vfy.c b/crypto/ocsp/ocsp_vfy.c index 415d67e61c..8a5e788d96 100644 --- a/crypto/ocsp/ocsp_vfy.c +++ b/crypto/ocsp/ocsp_vfy.c @@ -108,6 +108,7 @@ int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs, init_res = X509_STORE_CTX_init(&ctx, st, signer, bs->certs); if(!init_res) { + ret = -1; OCSPerr(OCSP_F_OCSP_BASIC_VERIFY,ERR_R_X509_LIB); goto end; }