File: valgrind.supp

package info (click to toggle)
pspp 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 66,676 kB
  • sloc: ansic: 267,210; xml: 18,446; sh: 5,534; python: 2,881; makefile: 125; perl: 64
file content (61 lines) | stat: -rw-r--r-- 1,054 bytes parent folder | download | duplicates (2)
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
# libfontconfig uses offsets instead of pointers so valgrind doesn't
# recognize when blocks are still in use
{
    fontconfig
    Memcheck:Leak
    ...
    fun:FcFontRenderPrepare
}
{
    fontconfig2
    Memcheck:Leak
    fun:realloc
    obj:*libfontconfig.so.*
}
{
    fontconfig3
    Memcheck:Leak
    fun:malloc
    obj:*libfontconfig.so.*
    ...
    fun:XML_ParseBuffer
}
{
   fontconfig4
   Memcheck:Leak
   match-leak-kinds: possible
   fun:calloc
   fun:g_malloc0
   fun:type_class_init_Wm
   ...
   fun:pango_fc_font_class_init
   fun:pango_fc_font_class_intern_init
   ...
}

# These are effectively static allocations by glib made at startup.
{
   g_type_register_static
   Memcheck:Leak
   match-leak-kinds: possible
   ...
   fun:g_type_register_static
}
{
   g_type_register_fundamental
   Memcheck:Leak
   match-leak-kinds: possible
   ...
   fun:g_type_register_fundamental
   ...
}
{
   type_node_fundamental_new_W
   Memcheck:Leak
   match-leak-kinds: possible
   ...
   fun:type_node_fundamental_new_W
   ...
   fun:_dl_init
   ...
}