From ef61386862a507e993a05e23de75a88d7744f7b4 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Wed, 19 Jul 2023 13:19:46 -0400 Subject: [PATCH] valgrind: suppress uninitialized value in OpenSSL Fixes: https://tracker.ceph.com/issues/61566 Signed-off-by: Casey Bodley --- qa/valgrind.supp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/qa/valgrind.supp b/qa/valgrind.supp index 1a73a84e5a863..52a833b33450b 100644 --- a/qa/valgrind.supp +++ b/qa/valgrind.supp @@ -663,6 +663,19 @@ ... } +# "Conditional jump or move depends on uninitialised value(s)" in OpenSSL +# https://github.com/openssl/openssl/issues/19719 +{ + uninitialized value in gcm_cipher_internal + Memcheck:Cond + ... + fun:gcm_cipher_internal + ... + fun:ossl_gcm_stream_final + fun:EVP_DecryptFinal_ex + ... +} + # "Conditional jump or move depends on uninitialised value(s)" in OpenSSL # while using aes-128-gcm with AES-NI enabled. Not observed while running # with `OPENSSL_ia32cap="~0x200000200000000"`. -- 2.39.5