valgrind supps: ignore gnutls leaking a certificate

After investigating, we do dispose of the TLS connections
appropriately in the souphttpsrc test, which in turn
calls gnutls_deinit, but certificates get leaked anyway.
This commit is contained in:
Mathieu Duponchelle 2018-04-13 21:19:02 +02:00
parent ec3c49e958
commit 79f16d69af

View file

@ -185,3 +185,23 @@
fun:getaddrinfo
...
}
{
<gnutls sessions leak the certificates, even though gnutls_deinit is correctly called>
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
...
fun:g_tls_certificate_gnutls_real_copy
fun:g_tls_server_connection_gnutls_retrieve_function
}
{
<gnutls sessions leak the certificates, even though gnutls_deinit is correctly called>
Memcheck:Leak
match-leak-kinds: definite
fun:calloc
...
fun:g_tls_certificate_gnutls_real_copy
fun:g_tls_server_connection_gnutls_retrieve_function
}