From 6624e1f7b6a397948561e9cc2774f0c8af1d2c79 Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Thu, 31 Oct 2019 22:37:51 +1100 Subject: Fix potential memory leak in dh_ameth.c Free dukm in error handling of dh_cms_encrypt() Fixes #10294 Reviewed-by: Matt Caswell Reviewed-by: Patrick Steuer (Merged from https://github.com/openssl/openssl/pull/10310) --- crypto/dh/dh_ameth.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/dh/dh_ameth.c b/crypto/dh/dh_ameth.c index abb9bfd..7907f50 100644 --- a/crypto/dh/dh_ameth.c +++ b/crypto/dh/dh_ameth.c @@ -976,6 +976,7 @@ static int dh_cms_encrypt(CMS_RecipientInfo *ri) err: OPENSSL_free(penc); X509_ALGOR_free(wrap_alg); + OPENSSL_free(dukm); return rv; } -- cgit v1.1