]> git-server-git.apps.pok.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)
committerIlya Dryomov <idryomov@gmail.com>
Fri, 12 Jul 2024 17:05:24 +0000 (19:05 +0200)
Fixes: https://tracker.ceph.com/issues/61566
Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit ef61386862a507e993a05e23de75a88d7744f7b4)

qa/valgrind.supp

index ab33ab54245c53b5828e664f1005baa6df56c9f8..dedaa9d2dc909b0f86982628fc3cb0a3e67871d3 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"`.