diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2019-11-23 11:25:56 +1100 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2019-11-23 11:28:02 +1100 |
commit | 5dc1be8d54f7fcfe395e200a571bf7fa7609ee30 (patch) | |
tree | 00dc24217995576ba7108b699d3184158eb7845e /script | |
parent | 767990e9d9bbb382c276236f4a254cad345dd2b1 (diff) | |
download | libgit2-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.supp | 8 |
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* + ... +} |