From 7ebd227b87c6ae451cc6efaac8603c21cb418097 Mon Sep 17 00:00:00 2001 From: tangyiqun Date: Tue, 12 Apr 2022 16:07:17 +0800 Subject: Check the return of EVP_KDF_fetch() Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/18096) (cherry picked from commit 02119faee397565525151eb2ce39c424d129d287) --- crypto/dh/dh_kdf.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crypto/dh') diff --git a/crypto/dh/dh_kdf.c b/crypto/dh/dh_kdf.c index 419e7711d3..97933cb520 100644 --- a/crypto/dh/dh_kdf.c +++ b/crypto/dh/dh_kdf.c @@ -39,6 +39,8 @@ int ossl_dh_kdf_X9_42_asn1(unsigned char *out, size_t outlen, const char *mdname = EVP_MD_get0_name(md); kdf = EVP_KDF_fetch(libctx, OSSL_KDF_NAME_X942KDF_ASN1, propq); + if (kdf == NULL) + return 0; kctx = EVP_KDF_CTX_new(kdf); if (kctx == NULL) goto err; -- cgit v1.2.3