]> 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>
Thu, 20 Jul 2023 13:22:55 +0000 (09:22 -0400)
Fixes: https://tracker.ceph.com/issues/61566
Signed-off-by: Casey Bodley <cbodley@redhat.com>
qa/valgrind.supp

index 1a73a84e5a863bd83c11f59b93bc23baa3ab8501..52a833b33450b8fa7a2d334743fb363cec851705 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"`.