glib.supp: Ignore one-off allocations in error registration.

This commit is contained in:
Krzesimir Nowak 2020-07-25 11:22:37 +02:00 committed by Philip Withnall
parent ae72f9de35
commit 3af6849881

View File

@ -1038,3 +1038,26 @@
...
fun:g_set_prgname
}
# Error domains hash
{
g_error_init
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
...
fun:g_hash_table_new_full
fun:g_error_init
}
# Error domain static registration
{
g_error_domain_register_static
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
...
fun:g_hash_table_insert
fun:error_domain_register
fun:g_error_domain_register_static
}