Skip to content

Commit

Permalink
updated valgrind.suppressions
Browse files Browse the repository at this point in the history
Added g_strerror() and dlopen() suppressions.
  • Loading branch information
MaxKellermann committed Mar 26, 2009
1 parent 4343c10 commit 17d2361
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions valgrind.suppressions
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,26 @@
fun:pthread_cancel_init
}

{
dlopen
Memcheck:Leak
fun:calloc
fun:_dlerror_run
}

{
dlopen
Memcheck:Leak
fun:malloc
fun:_dl_scope_free
fun:_dl_map_object_deps
fun:dl_open_worker
fun:_dl_catch_error
fun:_dl_open
fun:do_dlopen
fun:_dl_catch_error
fun:dlerror_run
}

# is that a leak in libdbus?

Expand Down Expand Up @@ -494,6 +514,33 @@
fun:g_quark_from_static_string
}

{
g_quark_from_string
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_strdup
fun:g_quark_from_string
}

{
g_quark_from_string
Memcheck:Leak
fun:calloc
fun:g_malloc0
fun:g_hash_table_new_full
fun:g_quark_from_string
}

{
g_quark_from_string
Memcheck:Leak
fun:malloc
fun:realloc
fun:g_realloc
fun:g_quark_from_string
}

{
g_get_any_init_do
Memcheck:Leak
Expand Down

0 comments on commit 17d2361

Please sign in to comment.