diff options
Diffstat (limited to '')
-rw-r--r-- | valgrind.suppressions | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/valgrind.suppressions b/valgrind.suppressions index 2cce34186..56bb8e62f 100644 --- a/valgrind.suppressions +++ b/valgrind.suppressions @@ -10,6 +10,15 @@ ... fun:g_random_int } +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:*alloc + fun:g_mutex_impl_new + fun:g_mutex_get_impl + fun:g_mutex_lock + fun:g_main_context_new +} { g_main_context_dispatch @@ -98,7 +107,7 @@ } { - g_static_private_set + <insert_a_suppression_name_here> Memcheck:Leak fun:*alloc ... @@ -106,6 +115,14 @@ } { + <insert_a_suppression_name_here> + Memcheck:Leak + fun:*alloc + ... + fun:g_intern_string +} + +{ g_get_language_names Memcheck:Leak fun:*alloc @@ -309,6 +326,29 @@ } { + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:strdup + ... + fun:ao_initialize +} + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:ao_initialize +} + +{ + <insert_a_suppression_name_here> + Memcheck:Addr4 + ... + fun:WildMidi_Init +} + +{ g_quark_from_string Memcheck:Leak fun:*alloc |