diff options
author | Frediano Ziglio <fziglio@redhat.com> | 2018-03-13 14:53:09 +0000 |
---|---|---|
committer | Frediano Ziglio <fziglio@redhat.com> | 2018-03-14 10:17:36 +0000 |
commit | f1b2d09b00b67cb154d0190b35134a04f5f5ea7b (patch) | |
tree | 81a0aa7f08bb1c0a9c1ab60deae7da0b4c2e2a57 | |
parent | f53f9725e1c44641b3656e4e2d625da390aa995d (diff) |
valgrind: Ignore some library leaks
Ignore getaddrinfo and libproxy leaks.
Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Christophe Fergeau <cfergeau@redhat.com>
-rw-r--r-- | server/tests/valgrind/glib.supp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/server/tests/valgrind/glib.supp b/server/tests/valgrind/glib.supp index ccfab67d..c4625bba 100644 --- a/server/tests/valgrind/glib.supp +++ b/server/tests/valgrind/glib.supp @@ -491,3 +491,22 @@ ... fun:g_object_new_valist } + +{ + getaddrinfo + Memcheck:Leak + fun:malloc + ... + fun:__resolv_conf_allocate + ... + fun:getaddrinfo +} + +{ + px_proxy_factory_get_proxies + Memcheck:Leak + fun:malloc + fun:tls_get_addr_tail + ... + fun:px_proxy_factory_get_proxies +} |