diff options
author | Max Kellermann <max@duempel.org> | 2009-03-26 19:50:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-26 19:50:34 +0100 |
commit | 17d23614a8e55c92a5f62fd0f0f4071bfb0e1158 (patch) | |
tree | 3136e9d23a8892668d718a2e21f88831f89121f5 /valgrind.suppressions | |
parent | 4343c108b30277a7f26cc280e059fd49d634c47a (diff) | |
download | mpd-17d23614a8e55c92a5f62fd0f0f4071bfb0e1158.tar.gz mpd-17d23614a8e55c92a5f62fd0f0f4071bfb0e1158.tar.xz mpd-17d23614a8e55c92a5f62fd0f0f4071bfb0e1158.zip |
updated valgrind.suppressions
Added g_strerror() and dlopen() suppressions.
Diffstat (limited to '')
-rw-r--r-- | valgrind.suppressions | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/valgrind.suppressions b/valgrind.suppressions index 73fca3080..7b9f80327 100644 --- a/valgrind.suppressions +++ b/valgrind.suppressions @@ -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? @@ -495,6 +515,33 @@ } { + 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 fun:malloc |