diff options
author | Max Kellermann <max@musicpd.org> | 2018-01-04 10:20:53 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-01-04 10:20:53 +0100 |
commit | 192f4240e3faba4ff48063a0644ef4401f0ace3c (patch) | |
tree | 319fdc995b6c713a1af0a8ea162952e1dc0d2078 | |
parent | ef71df60f633f3c425863d55651093041e1a381c (diff) |
valgrind.suppressions: more library suppressions
-rw-r--r-- | valgrind.suppressions | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/valgrind.suppressions b/valgrind.suppressions index d35e8d7e8..b6d28b67a 100644 --- a/valgrind.suppressions +++ b/valgrind.suppressions @@ -337,6 +337,15 @@ } { + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:*alloc + ... + fun:g_quark_init +} + +{ g_quark_from_string Memcheck:Leak fun:*alloc @@ -554,3 +563,29 @@ ... fun:_dl_init } + +# +# libpixman +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:*alloc + ... + fun:pixman_constructor +} + +# +# libssh (via libcurl) +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:*alloc + ... + fun:libssh2_init +} |