]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
valgrind: suppress uninitialized value in OpenSSL
authorCasey Bodley <cbodley@redhat.com>
Wed, 19 Jul 2023 17:19:46 +0000 (13:19 -0400)
committerCasey Bodley <cbodley@redhat.com>
Fri, 21 Jul 2023 13:38:02 +0000 (09:38 -0400)
Fixes: https://tracker.ceph.com/issues/61566
Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit ef61386862a507e993a05e23de75a88d7744f7b4)

qa/valgrind.supp

index 8baee4ef01a0cac0f80bedb621dc057c2e958fba..b08942fff6a9c56851e16a3bdf7dbd0ee291bb67 100644 (file)
   ...
 }
 
+# "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"`.