diff options
Diffstat (limited to 'valgrind.suppressions')
-rw-r--r-- | valgrind.suppressions | 125 |
1 files changed, 97 insertions, 28 deletions
diff --git a/valgrind.suppressions b/valgrind.suppressions index 03f2025ee..d35e8d7e8 100644 --- a/valgrind.suppressions +++ b/valgrind.suppressions @@ -297,34 +297,6 @@ fun:dlclose } -# is that a leak in libdbus? - -{ - <insert a suppression name here> - Memcheck:Leak - fun:?alloc - ... - obj:*/libdbus-*.so.* - fun:avahi_client_new -} - -{ - <insert a suppression name here> - Memcheck:Leak - fun:malloc - obj:/usr/lib/libdbus-1.so.3.4.0 - fun:dbus_message_new_error - obj:/usr/lib/libdbus-1.so.3.4.0 - fun:dbus_connection_send_with_reply - fun:dbus_connection_send_with_reply_and_block - obj:/usr/lib/libavahi-client.so.3.2.4 - fun:avahi_entry_group_new - fun:avahiRegisterService - fun:avahiClientCallback - obj:/usr/lib/libavahi-client.so.3.2.4 - fun:avahi_client_new -} - { inet_ntoa Memcheck:Leak @@ -485,3 +457,100 @@ fun:call_init fun:_dl_init } + +{ + <insert_a_suppression_name_here> + Memcheck:Cond + fun:index + fun:expand_dynamic_string_token + fun:fillin_rpath +} + +{ + <insert_a_suppression_name_here> + Memcheck:Cond + fun:index + fun:expand_dynamic_string_token + ... + fun:do_preload +} + +# +# libopenal +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + obj:*/libopenal.so* + ... + fun:_dl_init +} + +# +# libadplug +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + ... + obj:*/libadplug*.so* + ... + fun:_dl_init +} + +# +# libjack +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:*/libjack.so* + ... + fun:_dl_init +} + +# +# libsmbclient +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:*alloc + ... + fun:smbc_*_context + fun:smbc_init +} + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:*alloc + ... + fun:smbc_setDebug + fun:smbc_init +} + +# +# libgomp +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + ... + fun:gomp_init_num_threads + ... + fun:_dl_init +} |