Skip to content

Commit bda7e86

Browse files
committed
Add valgrind suppressions
1 parent 03303ab commit bda7e86

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.valgrind.suppressions

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,25 @@
136136
...
137137
}
138138

139+
# The same functions leak even without fontconfig :x
140+
{
141+
other_pango_leaks
142+
Memcheck:Leak
143+
fun:*alloc
144+
...
145+
fun:pango_layout_get_pixel_size
146+
...
147+
}
148+
149+
{
150+
other_pango_leaks2
151+
Memcheck:Leak
152+
fun:*alloc
153+
...
154+
fun:pango_renderer_draw_layout
155+
...
156+
}
157+
139158
{
140159
rsvg_conditional_jump
141160
Memcheck:Cond
@@ -194,3 +213,24 @@
194213
fun:notification_load_icon_with_scaling
195214
...
196215
}
216+
217+
{
218+
# FreeBSD part1
219+
glib_leak_freebsd1
220+
Memchek:Leak
221+
fun:*alloc
222+
...
223+
fun:g_dbus_address_get_stream_sync
224+
...
225+
}
226+
227+
{
228+
# FreeBSD part2
229+
# XXX: Why isn't memory freed in g_bus_unown_name?
230+
glib_leak_freebsd2
231+
Memchek:Leak
232+
fun:*alloc
233+
...
234+
fun:g_bus_own_name
235+
...
236+
}

0 commit comments

Comments
 (0)