leak-detective: Whitelist additional OpenSSL 3 functions

These are necessary when building against the OpenSSL 3 version shipped
with Ubuntu (the first is only seen when built with --enable-bfd-backtraces).
This commit is contained in:
Tobias Brunner 2022-12-01 09:40:21 +01:00
parent 9628c771ad
commit 30cda14426

View File

@ -599,6 +599,7 @@ static char *whitelist[] = {
"RAND_DRBG_get0_private", "RAND_DRBG_get0_private",
"RAND_DRBG_get0_public", "RAND_DRBG_get0_public",
/* OpenSSL 3.0 caches even more static stuff */ /* OpenSSL 3.0 caches even more static stuff */
"evp_generic_fetch_from_prov",
"ERR_set_debug", "ERR_set_debug",
"ERR_set_error", "ERR_set_error",
"EVP_DigestSignInit", "EVP_DigestSignInit",
@ -611,6 +612,7 @@ static char *whitelist[] = {
"EVP_CIPHER_fetch", "EVP_CIPHER_fetch",
"EVP_KDF_fetch", "EVP_KDF_fetch",
"EVP_KEYEXCH_fetch", "EVP_KEYEXCH_fetch",
"EVP_KEYMGMT_do_all_provided",
"EVP_KEYMGMT_fetch", "EVP_KEYMGMT_fetch",
"EVP_MAC_fetch", "EVP_MAC_fetch",
"EVP_MD_fetch", "EVP_MD_fetch",