Commit 5dc1be8d54f7fcfe395e200a571bf7fa7609ee30

Edward Thomson 2019-11-23T11:25:56

valgrind: suppress uninitialized reads in libcrypto libcrypto will read uninitialized memory as entropy. Suppress warnings from this behavior.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/script/valgrind.supp b/script/valgrind.supp
index 6ea687a..5ef6fab 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*
+	...
+}