From 1f8c79eca1db3013b9487f3d3ecf9f443081fd5f Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 28 Jun 2020 11:58:25 -0400 Subject: [PATCH] Add g_intern_static_string to valgrind suppressions That function can also trigger a quark table reallocation. --- gtk.supp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gtk.supp b/gtk.supp index 87ce6d2ec6..56ec710493 100644 --- a/gtk.supp +++ b/gtk.supp @@ -269,3 +269,11 @@ ... fun:g_quark_* } +{ + glib GQuark + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + ... + fun:g_intern_static_string +}