summaryrefslogtreecommitdiffstats
path: root/crypto/dh/dh_ameth.c
diff options
context:
space:
mode:
authorScott Wilson <scott@sawilson.xyz>2019-10-31 22:37:51 +1100
committerPatrick Steuer <patrick.steuer@de.ibm.com>2019-11-01 12:47:13 +0100
commitc38761171f428d80cd7906b12a0cdac6d1285a7d (patch)
tree550c90622424f8ba2a2c4ca4d1a2f876ec79bf6f /crypto/dh/dh_ameth.c
parent689c07b8d502301d82e09c1db04daf3c13b1d35d (diff)
Fix potential memory leak in dh_ameth.c
Free dukm in error handling of dh_cms_encrypt() Fixes #10294 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Patrick Steuer <patrick.steuer@de.ibm.com> (Merged from https://github.com/openssl/openssl/pull/10310) (cherry picked from commit 6624e1f7b6a397948561e9cc2774f0c8af1d2c79)
Diffstat (limited to 'crypto/dh/dh_ameth.c')
-rw-r--r--crypto/dh/dh_ameth.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/dh/dh_ameth.c b/crypto/dh/dh_ameth.c
index 60af9e2159..d53004080d 100644
--- a/crypto/dh/dh_ameth.c
+++ b/crypto/dh/dh_ameth.c
@@ -901,6 +901,7 @@ static int dh_cms_encrypt(CMS_RecipientInfo *ri)
err:
OPENSSL_free(penc);
X509_ALGOR_free(wrap_alg);
+ OPENSSL_free(dukm);
return rv;
}