diff options
author | Dan Williams <dcbw@redhat.com> | 2013-03-26 17:06:39 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2013-04-01 17:12:37 -0500 |
commit | bc921e35dadacc39017d296e666cbfbd6536bea9 (patch) | |
tree | ef6bce2cdf7427d88b16ad7aa7689fa3f6b835fa /valgrind.suppressions | |
parent | 0ab00b895b9e410d70608e4928b053732e2adca2 (diff) | |
download | NetworkManager-bc921e35dadacc39017d296e666cbfbd6536bea9.tar.gz |
valgrind: add common suppressions
Stuff for GObject and NSS that is allocated but never expected
to be freed.
Diffstat (limited to 'valgrind.suppressions')
-rw-r--r-- | valgrind.suppressions | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/valgrind.suppressions b/valgrind.suppressions index e69de29bb2..8402593b34 100644 --- a/valgrind.suppressions +++ b/valgrind.suppressions @@ -0,0 +1,76 @@ +{ + NSS_NoDB_Init + Memcheck:Leak + ... + fun:NSS_NoDB_Init + ... +} +{ + g_type_init_with_debug_flags + Memcheck:Leak + ... + fun:g_type_init_with_debug_flags + ... +} +{ + g_type_register_static + Memcheck:Leak + ... + fun:g_type_register_static + ... +} +{ + g_param_spec_boxed + Memcheck:Leak + ... + fun:g_param_spec_boxed + ... +} +{ + g_type_add_interface_static + Memcheck:Leak + ... + fun:g_type_add_interface_static + ... +} +{ + g_signal_type_cclosure_new + Memcheck:Leak + fun:calloc + fun:g_malloc0 + fun:g_closure_new_simple + fun:g_signal_type_cclosure_new + fun:g_signal_new + ... +} +{ + dbus_g_value_types_init + Memcheck:Leak + fun:realloc + fun:g_realloc + fun:g_type_set_qdata + fun:_dbus_g_value_types_init + fun:dbus_g_bus_get + ... +} +{ + type_iface_vtable_base_init_Wm + Memcheck:Leak + fun:malloc + fun:g_malloc + fun:g_memdup + fun:type_iface_vtable_base_init_Wm + fun:g_type_class_ref + ... +} +{ + g_type_create_instance + Memcheck:Leak + fun:malloc + fun:g_malloc + fun:g_slice_alloc + fun:g_slice_alloc0 + fun:g_type_create_instance + fun:g_object_constructor + ... +} |