diff options
Diffstat (limited to '')
-rw-r--r-- | valgrind.suppressions | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/valgrind.suppressions b/valgrind.suppressions index 04651b7ad..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 |