summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-11-23 11:25:56 +1100
committerEdward Thomson <ethomson@edwardthomson.com>2019-11-23 11:28:02 +1100
commit5dc1be8d54f7fcfe395e200a571bf7fa7609ee30 (patch)
tree00dc24217995576ba7108b699d3184158eb7845e /script
parent767990e9d9bbb382c276236f4a254cad345dd2b1 (diff)
downloadlibgit2-5dc1be8d54f7fcfe395e200a571bf7fa7609ee30.tar.gz
valgrind: suppress uninitialized reads in libcrypto
libcrypto will read uninitialized memory as entropy. Suppress warnings from this behavior.
Diffstat (limited to 'script')
-rw-r--r--script/valgrind.supp8
1 files changed, 8 insertions, 0 deletions
diff --git a/script/valgrind.supp b/script/valgrind.supp
index 6ea687ab9..5ef6fab35 100644
--- a/script/valgrind.supp
+++ b/script/valgrind.supp
@@ -132,3 +132,11 @@
fun:exit
...
}
+
+{
+ ignore-libcrypto-uninitialized-read-for-entropy
+ Memcheck:Value8
+ ...
+ obj:*libcrypto.so*
+ ...
+}