forked from ghostty-org/ghostty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalgrind.supp
More file actions
2441 lines (2243 loc) · 41.7 KB
/
valgrind.supp
File metadata and controls
2441 lines (2243 loc) · 41.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This Valgrind suppression file contains the suppressions necessary
# to run Ghostty with GTK under Valgrind. There may be some false suppressions
# here so we should scrutinize this file periodically.
#
# To run Ghostty under Valgrind:
#
# valgrind \
# --leak-check=full \
# --num-callers=50 \
# --suppressions=valgrind.supp \
# ./zig-out/bin/ghostty
#
# You must gracefully exit Ghostty (do not SIGINT) by closing all windows
# and quitting. Otherwise, we leave a number of GTK resources around.
# Reproduction:
# 1. Launch Ghostty (no config)
# 2. Right Click on the terminal
# 3. Hover over "Split" to get a submenu
# 4. Close menu by clicking away
# 5. Exit
#
# The menu model and popover are fully defined in the blueprint so I don't
# THINK we need to do any manual unrefing. But there's a lot of leaks here
# so if someone wants to take a closer look I'd appreciate it.
{
GTK PopOver Menu Model Leak
Memcheck:Leak
match-leak-kinds: possible
...
fun:gtk_menu_section_box_insert_func
...
fun:gtk_popover_menu_set_menu_model
...
}
{
GTK/Blueprint Popover GSK Transform
Memcheck:Leak
match-leak-kinds: possible
...
fun:gtk_popover_size_allocate
fun:gtk_widget_allocate
fun:gtk_popover_native_layout
...
}
# Reproduction:
#
# 1. Launch Ghostty
# 2. Split Right
# 3. Hit "X" to close
{
GTK CSS Node State
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
fun:g_malloc
fun:g_memdup2
fun:gtk_css_node_declaration_set_state
fun:gtk_css_node_set_state
fun:gtk_widget_propagate_state
fun:gtk_widget_update_state_flags
fun:gtk_main_do_event
fun:surface_event
fun:_gdk_marshal_BOOLEAN__POINTERv
fun:gdk_surface_event_marshallerv
fun:_g_closure_invoke_va
fun:signal_emit_valist_unlocked
fun:g_signal_emit_valist
fun:g_signal_emit
fun:gdk_surface_handle_event
...
}
{
GTK CSS Node Validation
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
...
fun:gtk_css_node_validate_internal
fun:gtk_css_node_validate
...
}
{
GTK CSS Provider Leak
Memcheck:Leak
match-leak-kinds: definite
fun:calloc
fun:g_malloc0
fun:gtk_css_value_alloc
fun:_gtk_css_reference_value_new
fun:parse_ruleset
fun:gtk_css_provider_load_internal
fun:gtk_css_provider_load_from_bytes
fun:gtk_css_provider_load_from_string
...
}
{
GDK SVG Loading Leaks
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
...
fun:rsvg_*
...
fun:gdk_pixbuf_loader_close
fun:load_from_stream
fun:gdk_pixbuf_new_from_stream_at_scale
fun:gtk_make_symbolic_pixbuf_from_data
fun:gdk_texture_new_*
...
}
{
GDK SVG Loading Touches Undefined Memory
Memcheck:Cond
...
fun:rsvg_handle_get_pixbuf_and_error
...
fun:gdk_pixbuf_loader_close
fun:load_from_stream
fun:gdk_pixbuf_new_from_stream_at_scale
...
}
{
GDK Drag and Drop Leaks Data
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:g_slice_alloc0
fun:g_error_allocate
fun:g_error_new_literal
fun:g_set_error_literal
fun:g_output_stream_set_pending
fun:g_output_stream_write
fun:portal_file_deserializer_finish
fun:g_task_return_now
fun:g_task_return
fun:async_ready_splice_callback_wrapper
fun:g_task_return_now
fun:g_task_return
fun:real_splice_async_complete_cb
fun:async_ready_close_callback_wrapper
fun:g_task_return_now
fun:complete_in_idle_cb
fun:g_idle_dispatch
fun:g_main_context_dispatch_unlocked
fun:g_main_context_iterate_unlocked.isra.0
fun:g_main_context_iteration
fun:apprt.gtk.class.application.Application.run
fun:apprt.gtk.App.run
fun:main_ghostty.main
fun:callMain
fun:callMainWithArgs
fun:main
}
{
GDK Drag and Drop Leaks Task
Memcheck:Leak
match-leak-kinds: definite
fun:calloc
fun:g_malloc0
fun:g_type_create_instance
fun:g_object_new_internal.part.0
fun:g_object_new_with_properties
fun:g_object_new
fun:g_task_new
fun:file_transfer_portal_retrieve_files
fun:portal_file_deserializer_finish
fun:g_task_return_now
fun:g_task_return
fun:async_ready_splice_callback_wrapper
fun:g_task_return_now
fun:g_task_return
fun:real_splice_async_complete_cb
fun:async_ready_close_callback_wrapper
fun:g_task_return_now
fun:complete_in_idle_cb
fun:g_idle_dispatch
fun:g_main_context_dispatch_unlocked
fun:g_main_context_iterate_unlocked.isra.0
fun:g_main_context_iteration
fun:apprt.gtk.class.application.Application.run
fun:apprt.gtk.App.run
fun:main_ghostty.main
fun:callMain
fun:callMainWithArgs
fun:main
}
{
VMware Graphics Driver
Memcheck:Leak
match-leak-kinds: possible
...
fun:vmw_fence_create
fun:vmw_ioctl_command
fun:vmw_swc_flush
fun:svga_context_flush
...
}
{
SVGA Stuff
Memcheck:Leak
match-leak-kinds: definite
fun:calloc
fun:svga_create_surface_view
fun:svga_set_framebuffer_state
fun:st_update_framebuffer_state
fun:st_Clear
fun:gsk_gpu_render_pass_op_gl_command
...
}
{
GTK Icon
Memcheck:Leak
match-leak-kinds: possible
fun:*alloc
...
fun:gtk_icon_theme_set_display
fun:gtk_icon_theme_get_for_display
...
}
{
GDK Wayland Connection
Memcheck:Leak
match-leak-kinds: possible
fun:calloc
fun:wl_closure_init
fun:wl_connection_demarshal
fun:wl_display_read_events
fun:gdk_wayland_poll_source_check
fun:g_main_context_check_unlocked
fun:g_main_context_iterate_unlocked.isra.0
fun:g_main_context_iteration
...
}
{
GSK Renderer GPU Stuff
Memcheck:Leak
match-leak-kinds: possible
...
fun:gsk_gpu_image_toggle_ref_texture
fun:gsk_gl_image_new_for_texture
fun:gsk_gl_frame_upload_texture
fun:gsk_gpu_frame_do_upload_texture
fun:gsk_gpu_lookup_texture
...
fun:gsk_gpu_node_processor_process
fun:gsk_gpu_frame_render
...
}
{
GDK GLArea
Memcheck:Leak
match-leak-kinds: possible
fun:*alloc
...
fun:gdk_memory_texture_from_texture
fun:gdk_gl_texture_release
fun:delete_one_texture
fun:g_list_foreach
fun:g_list_free_full
fun:gtk_gl_area_unrealize
...
}
{
GDK GLArea Snapshot
Memcheck:Leak
match-leak-kinds: definite
fun:*alloc
...
fun:gtk_gl_area_snapshot
...
}
{
GSK GPU Rendering
Memcheck:Leak
match-leak-kinds: possible
...
fun:gsk_gpu_render_pass_op_gl_command
fun:gsk_gl_frame_submit
fun:gsk_gpu_renderer_render
fun:gsk_renderer_render
fun:gtk_widget_render
fun:surface_render
fun:_gdk_marshal_BOOLEAN__BOXEDv
fun:_g_closure_invoke_va
fun:signal_emit_valist_unlocked
fun:g_signal_emit_valist
fun:g_signal_emit
fun:gdk_surface_paint_on_clock
fun:_g_closure_invoke_va
fun:signal_emit_valist_unlocked
fun:g_signal_emit_valist
fun:g_signal_emit
fun:gdk_frame_clock_*
...
fun:g_timeout_dispatch
fun:g_main_context_dispatch_unlocked
fun:g_main_context_iterate_unlocked.isra.0
fun:g_main_context_iteration
...
}
{
GSK GPU Rendering Another Form
Memcheck:Leak
match-leak-kinds: possible
...
fun:gsk_gpu_render_pass_op_gl_command
fun:gsk_gl_frame_submit
fun:gsk_gpu_renderer_render
fun:gsk_renderer_render
fun:gtk_widget_render
fun:surface_render
fun:_gdk_marshal_BOOLEAN__BOXEDv
fun:_g_closure_invoke_va
fun:signal_emit_valist_unlocked
fun:g_signal_emit_valist
fun:g_signal_emit
fun:gdk_surface_paint_on_clock
fun:g_closure_invoke
fun:signal_emit_unlocked_R.isra.0
fun:signal_emit_valist_unlocked
fun:g_signal_emit_valist
fun:g_signal_emit
fun:gdk_frame_clock_*
...
fun:g_timeout_dispatch
fun:g_main_context_dispatch_unlocked
fun:g_main_context_iterate_unlocked.isra.0
fun:g_main_context_iteration
...
}
{
GSK More Forms
Memcheck:Leak
match-leak-kinds: possible
...
fun:gsk_gl_device_use_program
fun:gsk_gl_frame_use_program
fun:gsk_gpu_shader_op_gl_command_n
fun:gsk_gpu_render_pass_op_gl_command
fun:gsk_gl_frame_submit
fun:gsk_gpu_renderer_render_texture
fun:gsk_renderer_render_texture
fun:render_contents
...
}
{
GTK Shader Selector
Memcheck:Leak
match-leak-kinds: possible
...
fun:_ZL29si_init_shader_selector_asyncPvS_i
fun:util_queue_thread_func
fun:impl_thrd_routine
fun:start_thread
fun:clone
}
# Weird gtk_tooltip_init leak I can't figure out
{
Non-builder tooltip create
Memcheck:Leak
match-leak-kinds: possible
...
fun:gtk_at_context_init
fun:g_type_create_instance
fun:g_object_new_internal.part.0
fun:g_object_new_valist
fun:g_object_new
...
fun:gtk_at_context_create
fun:gtk_widget_init
fun:g_type_create_instance
fun:g_object_new_internal.part.0
fun:g_object_new_with_properties
fun:g_object_new
fun:gtk_tooltip_init
...
}
{
Another tooltip
Memcheck:Leak
match-leak-kinds: possible
...
fun:gtk_string_accessible_value_new
fun:gtk_accessible_update_property
fun:gtk_label_set_text_internal
fun:gtk_label_set_markup_internal
fun:gtk_label_recalculate
fun:gtk_label_set_markup
fun:gtk_tooltip_window_set_label_markup
fun:gtk_widget_real_query_tooltip
fun:_gtk_marshal_BOOLEAN__INT_INT_BOOLEAN_OBJECTv
...
fun:_g_closure_invoke_va
fun:signal_emit_valist_unlocked
fun:g_signal_emit_valist
fun:g_signal_emit
fun:gtk_widget_query_tooltip
fun:gtk_tooltip_run_requery
fun:gtk_tooltip_handle_event_internal
fun:_gtk_tooltip_handle_event
...
}
{
Not sure about this one, I can't figure it out.
Memcheck:Leak
match-leak-kinds: possible
...
fun:gtk_accessible_attribute_set_new
fun:gtk_at_context_init
fun:g_type_create_instance
fun:g_object_new_internal.part.0
fun:g_object_new_valist
fun:g_object_new
...
fun:gtk_at_context_create
fun:gtk_widget_init
fun:g_type_create_instance
fun:g_object_new_internal.part.0
fun:g_object_new_with_properties
fun:g_object_new
fun:_gtk_builder_construct
fun:builder_construct
...
fun:_gtk_buildable_parser_replay_precompiled
fun:_gtk_builder_parser_parse_buffer
fun:gtk_builder_extend_with_template
fun:gtk_widget_init_template
fun:g_type_create_instance
fun:g_object_new_internal.part.0
fun:g_object_new_with_properties
fun:g_object_new
fun:gtk_tooltip_init
...
}
{
Fcitx
Memcheck:Leak
match-leak-kinds: definite
...
fun:g_malloc0
fun:parser_start_element
fun:emit_start_element
fun:g_markup_parse_context_parse
fun:g_dbus_node_info_new_for_xml
fun:_fcitx_g_client_*
...
}
{
Fcitx
Memcheck:Leak
match-leak-kinds: possible
...
fun:g_closure_invoke
fun:signal_emit_unlocked_R.isra.0
fun:signal_emit_valist_unlocked
fun:g_signal_emit_valist
fun:g_signal_emit
fun:_fcitx_g_client_g_signal
...
}
{
GDK Wayland Pointer Motion Event
Memcheck:Leak
match-leak-kinds: definite
fun:calloc
fun:g_malloc0
fun:g_type_create_instance
fun:gdk_event_alloc
fun:gdk_motion_event_new
fun:pointer_handle_motion
fun:ffi_call_unix64
fun:ffi_call_int
fun:ffi_call
fun:wl_closure_invoke
fun:dispatch_event
fun:wl_display_dispatch_queue_pending
fun:_gdk_wayland_display_queue_events
fun:gdk_display_get_event
fun:gdk_wayland_event_source_dispatch
fun:g_main_context_dispatch_unlocked
fun:g_main_context_iterate_unlocked.isra.0
fun:g_main_context_iteration
...
}
{
GTK FontConfig
Memcheck:Leak
match-leak-kinds: possible
fun:*alloc
...
fun:FcFontSet*
...
fun:fc_thread_func
fun:g_thread_proxy
fun:start_thread
...
}
{
GTK FontConfig
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
fun:strdup
fun:FcValueSave
fun:FcConfigEvaluate
fun:FcConfigValues
...
}
{
GTK init
Memcheck:Leak
match-leak-kinds: possible
...
fun:gtk_init
}
{
GTK init
Memcheck:Leak
match-leak-kinds: possible
...
fun:gtk_init
}
{
GTK FontConfig data is never freed
Memcheck:Leak
match-leak-kinds: possible
...
fun:FcConfigInit
fun:fc_thread_func
fun:g_thread_proxy
fun:start_thread
...
}
{
GTK EGL resources never freed
Memcheck:Leak
match-leak-kinds: possible
...
fun:__eglLoadVendors
fun:eglQueryString
fun:epoxy_has_egl_extension
fun:gdk_display_init_egl
}
{
GTK EGL dlopen never freed
Memcheck:Leak
match-leak-kinds: possible
...
fun:dlopen@@GLIBC_*
fun:get_dlopen_handle.part.0
fun:epoxy_has_egl
fun:gdk_display_init_egl
}
{
libgl init never frees
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
fun:RegisterStubCallbacks
fun:__glDispatchRegisterStubCallbacks
fun:__libGLInit
...
}
{
pango fontset
Memcheck:Leak
match-leak-kinds: possible
fun:*alloc
...
fun:FcFontRenderPrepare
fun:pango_fc_fontset_get_font_at
...
}
{
pango and fontconfig
Memcheck:Leak
match-leak-kinds: definite
fun:*alloc
...
fun:FcChar*
fun:pango_fc_coverage_real_get
...
}
{
pango font map
Memcheck:Leak
match-leak-kinds: possible
...
fun:pango_fc_font_map_load_fontset
...
}
{
pango font map to cairgo
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
...
fun:FcConfigValues
fun:FcConfigSubstituteWithPat
fun:FcConfigSubstitute
fun:pango_cairo_fc_font_map_fontset_key_substitute
fun:pango_fc_font_map_load_fontset
...
}
{
pango language
Memcheck:Leak
match-leak-kinds: possible
fun:calloc
fun:g_malloc0
fun:pango_language_from_string
fun:pango_language_get_default
fun:gtk_get_locale_direction
fun:gtk_init_check
...
}
{
Adwaita Stylesheet Load
Memcheck:Leak
match-leak-kinds: definite
fun:calloc
fun:g_malloc0
fun:gtk_css_value_alloc
fun:_gtk_css_reference_value_new
fun:parse_ruleset
fun:gtk_css_provider_load_internal
fun:gtk_css_provider_load_from_file
fun:gtk_css_provider_load_from_resource
fun:update_stylesheet
fun:g_object_new_internal.part.0
fun:g_object_new_valist
fun:g_object_new
}
# Mesa leaks all sorts of stuff that we can't directly control,
# so we ignore all of that.
{
Mesa
Memcheck:Leak
...
fun:_mesa_*
...
}
{
Mesa
Memcheck:Leak
...
fun:mesa_*
...
}
{
Graphics Driver dri
Memcheck:Leak
match-leak-kinds: possible
fun:*alloc
...
fun:dri*
}
{
Radeon
Memcheck:Leak
match-leak-kinds: possible
fun:*alloc
...
fun:radeonsi_*
}
{
Mesa Shader
Memcheck:Leak
match-leak-kinds: possible
...
fun:si_*
}
#--------------------------------------------------------------------
# GTK
#--------------------------------------------------------------------
# Actual GTK things
{
GtkWidgetClass action GPtrArray
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:g_ptr_array_sized_new
fun:g_ptr_array_new
fun:gtk_widget_class_add_action
}
{
GIO modules
Memcheck:Leak
match-leak-kinds: definite
fun:calloc
...
fun:_g_io_module_get_default
}
{
GTK media extension gio modules
Memcheck:Leak
match-leak-kinds: definite
fun:calloc
...
fun:g_io_module_new
...
fun:gtk_media_file_extension_init
}
# AMD driver
{
radeonsi_dri general
Memcheck:Leak
fun:calloc
...
obj:/usr/lib*/dri/radeonsi_dri.so
}
{
radeonsi_dri general
Memcheck:Leak
fun:malloc
...
obj:/usr/lib*/dri/radeonsi_dri.so
}
# mesa driver stuff
{
i965 addr4
Memcheck:Addr4
obj:/usr/lib*/dri/i965_dri.so*
}
{
i965 addr8
Memcheck:Addr8
obj:/usr/lib*/dri/i965_dri.so*
}
{
i965 memcpy
Memcheck:Addr8
fun:memcpy*
obj:/usr/lib*/dri/i965_dri.so*
}
{
i965 memcpy
Memcheck:Addr2
fun:memcpy*
obj:/usr/lib*/dri/i965_dri.so*
}
{
mesa memcmp 8
Memcheck:Addr8
fun:*memcmp*
obj:/usr/lib*/dri/i965_dri.so*
}
{
mesa memcmp 1
Memcheck:Addr1
fun:*memcmp*
obj:/usr/lib*/dri/i965_dri.so*
}
{
mesa memset 8
Memcheck:Addr8
fun:*memset*
obj:/usr/lib*/dri/i965_dri.so
}
{
mesa realpath
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
fun:realpath@@GLIBC_2.3
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
fun:epoxy_eglInitialize_global_rewrite_ptr
}
{
mesa calloc
Memcheck:Leak
match-leak-kinds: definite
fun:calloc
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
fun:epoxy_eglInitialize_global_rewrite_ptr
}
{
epoxy strncmp
Memcheck:Addr8
fun:strncmp
...
fun:epoxy_eglInitialize_global_rewrite_ptr
}
{
mesa malloc
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
obj:/usr/lib*/dri/i965_dri.so*
}
{
mesa glReadPixels
Memcheck:Addr16
obj:*
obj:*
obj:*
obj:*
obj:*
fun:epoxy_glReadPixels_global_rewrite_ptr
}
{
epoxy glxQueryServerString 1
Memcheck:Leak
fun:malloc
fun:XextAddDisplay
obj:*
obj:*
obj:*
obj:*
obj:*
fun:epoxy_glXQueryServerString_global_rewrite_ptr
}
{
epoxy glxQueryServerString 2
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
fun:realpath*
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
fun:epoxy_glXQueryServerString_global_rewrite_ptr
}
{
epoxy glGetTexImage
Memcheck:Addr16
obj:*
obj:*
obj:*
obj:*
obj:*
fun:epoxy_glGetTexImage_global_rewrite_ptr
}
# Fontconfig
{
FcFontSetList
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
obj:/usr/lib*/libfontconfig.so*
obj:/usr/lib*/libfontconfig.so*
fun:FcFontSetList
}
{
FcPatternObjectInsertElt
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
fun:FcPatternObjectInsertElt
}
{
FcPatternObjectInsertElt2
Memcheck:Leak
match-leak-kinds: definite
fun:realloc
fun:FcPatternObjectInsertElt
}
{
FcFontRenderPrepare
Memcheck:Leak
match-leak-kinds: definite
fun:realloc
obj:/usr/lib*/libfontconfig.so*
obj:/usr/lib*/libfontconfig.so*
fun:FcFontRenderPrepare
}
{
FcDefaultSubstitute
Memcheck:Leak
match-leak-kinds: definite
fun:realloc
obj:/usr/lib*/libfontconfig.so*
obj:/usr/lib*/libfontconfig.so*
fun:FcDefaultSubstitute
}
{
FcDefaultSubstituteWithPat
Memcheck:Leak
match-leak-kinds: definite
fun:realloc
obj:/usr/lib*/libfontconfig.so*
obj:/usr/lib*/libfontconfig.so*
fun:FcDefaultSubstituteWithPat
}
{
FcConfigSubstituteWithPat
Memcheck:Leak
match-leak-kinds: definite
fun:realloc
obj:/usr/lib*/libfontconfig.so*
obj:/usr/lib*/libfontconfig.so*
fun:FcConfigSubstituteWithPat
}
{
FcConfigValues
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
obj:/usr/lib*/libfontconfig.so*
obj:/usr/lib*/libfontconfig.so*
fun:FcConfigValues
}
{
FcValueSave
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
obj:/usr/lib*/libfontconfig.so*
obj:/usr/lib*/libfontconfig.so*