From cc069067075d77c7a61e44a253aec917d0b6a2f5 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 25 Aug 2016 09:40:17 +0100 Subject: [PATCH] Fix an uninitialised read on an error path Found by Coverity. Reviewed-by: Richard Levitte --- crypto/ocsp/ocsp_ext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/ocsp/ocsp_ext.c b/crypto/ocsp/ocsp_ext.c index 72d21796d2..b829b2e4e3 100644 --- a/crypto/ocsp/ocsp_ext.c +++ b/crypto/ocsp/ocsp_ext.c @@ -257,7 +257,7 @@ static int ocsp_add1_nonce(STACK_OF(X509_EXTENSION) **exts, */ os.length = ASN1_object_size(0, len, V_ASN1_OCTET_STRING); if (os.length < 0) - goto err; + return 0; os.data = OPENSSL_malloc(os.length); if (os.data == NULL) -- GitLab