From e59535df1f8f79a6040a5979c95106f5aa55f4f4 Mon Sep 17 00:00:00 2001 From: Ismo Puustinen Date: Fri, 7 Aug 2015 22:11:28 -0400 Subject: GH364: Free memory on an error path Part of RT 3997 Per Ben, just jump to common exit code. Signed-off-by: Rich Salz Reviewed-by: Richard Levitte (cherry picked from commit cc2829e6641092abed8360433dbe67e883fd1cc6) --- crypto/x509/x509_vfy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crypto/x509/x509_vfy.c b/crypto/x509/x509_vfy.c index a2f1dbe..26c6bb3 100644 --- a/crypto/x509/x509_vfy.c +++ b/crypto/x509/x509_vfy.c @@ -354,7 +354,8 @@ int X509_verify_cert(X509_STORE_CTX *ctx) if (!sk_X509_push(ctx->chain, x)) { X509_free(xtmp); X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE); - return 0; + ok = 0; + goto done; } num++; } -- 1.7.12.1