[Diameter] Add a couple of command codes from IANA.
[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    Remove uninitialised CPU condition code check for ws_cpuid_sse42() on Virtualbox
10    Memcheck:Cond
11    fun:ws_mempbrk_sse42_compile
12    ...
13    fun:register_all_protocols
14    fun:proto_init
15    fun:epan_init
16    fun:main
17 }
18
19 {
20    Libgcrypt leak (gcry_control)
21    Memcheck:Leak
22    match-leak-kinds: reachable
23    fun:malloc
24    ...
25    fun:gcry_control
26    fun:epan_init
27    fun:main
28 }
29
30 {
31    Libgcrypt leak (gcry_check_version)
32    Memcheck:Leak
33    match-leak-kinds: reachable
34    fun:malloc
35    ...
36    fun:epan_get_runtime_version_info
37    fun:get_tshark_runtime_version_info
38    fun:get_runtime_version_info
39    fun:main
40 }
41
42 {
43    Glib Leak (g_get_charset)
44    Memcheck:Leak
45    match-leak-kinds: reachable
46    fun:*alloc
47    ...
48    fun:g_get_charset
49    fun:print_stream_text_alloc
50    ...
51 }
52
53 {
54    Glib leak (g_get_user_config_dir)
55    Memcheck:Leak
56    match-leak-kinds: reachable
57    ...
58    fun:g_get_user_config_dir
59    ...
60 }
61
62 {
63    Glib leak (g_module)
64    Memcheck:Leak
65    match-leak-kinds: reachable
66    ...
67    fun:g_module_*
68    ...
69 }
70
71 {
72    Glib leak (g_private_get) - requires glib debugging symbols installed
73    Memcheck:Leak
74    match-leak-kinds: reachable
75    fun:malloc
76    ...
77    fun:g_private_get
78 }
79
80 {
81    Glib leak (g_log)
82    Memcheck:Leak
83    match-leak-kinds: reachable
84    fun:malloc
85    fun:g_malloc
86    ...
87    fun:g_log_set_handler_full
88 }
89
90 {
91    Libc leak (dl_init)
92    Memcheck:Leak
93    match-leak-kinds: reachable
94    fun:*alloc
95    ...
96    fun:call_init.part.0
97    fun:call_init
98    fun:_dl_init
99 }