Add my pre-commit git script (with checkAPI/hf/encoding args...) Need to copy in...
[metze/wireshark/wip.git] / tools / vg-suppressions
1 # This file lists suppressions to hide valgrind errors in libraries we don't
2 # control. Be careful adding to it, since overly-broad suppressions may hide
3 # real errors in Wireshark!
4 #
5 # This is primarily targeted towards the set of libraries on the fuzz-bot (which
6 # runs a valgrind step) but other entries are welcome as long as they are
7 # sufficiently commented.
8
9 # Zlib 1.2.3.4 on the buildbot hits an uninitialized jump on the first call to
10 # inflateReset2. According to the Zlib changelog this was fixed in 1.2.3.7.
11 {
12     libz/inflateReset2/jump
13     Memcheck:Cond
14     fun:inflateReset2
15     fun:inflateInit2_
16 }