From 7b10ca71ca4b97e45e8dce8e76991eb9d07a792c Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 9 Jul 2024 16:28:31 +0000 Subject: [PATCH] OPENSSL_malloc() -> malloc() --- lib/libcrypto/kdf/tls1_prf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libcrypto/kdf/tls1_prf.c b/lib/libcrypto/kdf/tls1_prf.c index e2086e8d298..6d3d49cd251 100644 --- a/lib/libcrypto/kdf/tls1_prf.c +++ b/lib/libcrypto/kdf/tls1_prf.c @@ -257,7 +257,7 @@ static int tls1_prf_alg(const EVP_MD *md, seed, seed_len, out, olen)) return 0; - if ((tmp = OPENSSL_malloc(olen)) == NULL) { + if ((tmp = malloc(olen)) == NULL) { KDFerror(ERR_R_MALLOC_FAILURE); return 0; } -- 2.20.1