summaryrefslogtreecommitdiff
path: root/tools/vg-suppressions
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-08-20 03:21:06 +0000
committerEvan Huus <eapache@gmail.com>2013-08-20 03:21:06 +0000
commit1a884bf191ffbf7b41606140381d634b58352c8f (patch)
tree14e5d7d460ac1ef2d097b30b7de0cf419ee5ff76 /tools/vg-suppressions
parentf0a66b2e3e948669eb6d18df713ab8da7586804a (diff)
downloadwireshark-1a884bf191ffbf7b41606140381d634b58352c8f.tar.gz
Add a valgrind suppressions file set to suppress the zlib error which otherwise
pops up immediately on the fuzzbot. Hopefully there won't be too many more of these. svn path=/trunk/; revision=51434
Diffstat (limited to 'tools/vg-suppressions')
-rw-r--r--tools/vg-suppressions16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/vg-suppressions b/tools/vg-suppressions
new file mode 100644
index 0000000000..c0bea41c02
--- /dev/null
+++ b/tools/vg-suppressions
@@ -0,0 +1,16 @@
+# This file lists suppressions to hide valgrind errors in libraries we don't
+# control. Be careful adding to it, since overly-broad suppressions may hide
+# real errors in Wireshark!
+#
+# This is primarily targeted towards the set of libraries on the fuzz-bot (which
+# runs a valgrind step) but other entries are welcome as long as they are
+# sufficiently commented.
+
+# Zlib 1.2.3.4 on the buildbot hits an uninitialized jump on the first call to
+# inflateReset2. According to the Zlib changelog this was fixed in 1.2.3.7.
+{
+ libz/inflateReset2/jump
+ Memcheck:Cond
+ fun:inflateReset2
+ fun:inflateInit2_
+}