Files
gnucash/common/debug/valgrind/valgrind-libfontconfig.supp
Geert Janssens 83d14e1c1c Restructure the src directory
It is split into
- /libgnucash (for the non-gui bits)
- /gnucash (for the gui)
- /common (misc source files used by both)
- /bindings (currently only holds python bindings)

This is the first step in restructuring the code. It will need much
more fine tuning later on.
2017-08-10 18:45:00 +02:00

58 lines
1.3 KiB
Plaintext

# FILE: valgrind-libfontconfig.supp
#
# FUNCTION: This file is a valgrind 'suppression' file, used to
# get valgrind to not report certain errors that we aren't
# interested in.
#
# valgrind is a memory allocation debugging tool. See the
# file ./HACKING for instructions on how to run gnucash with
# valgrind
#
# HISTORY: created aug 2003 linas vepstas
##----------------------------------------------------------------------##
# Format of this file is:
# {
# name_of_suppression
# skin_name:supp_kind
# (optional extra info for some suppression types)
# caller0 name, or /name/of/so/file.so
# caller1 name, or ditto
# (optionally: caller2 name)
# (optionally: caller3 name)
# }
#
# For memcheck, the supp_kinds are:
#
# Param Value1 Value2 Value4 Value8 Value16
# Free Addr1 Addr2 Addr4 Addr8 Addr16
# Cond (previously known as Value0)
# Leak
#
# and the optional extra info is:
# if Param: name of system call param
# if Free: name of free-ing fn)
{
libfontconfig realloc Leak
Memcheck:Leak
fun:realloc
obj:/usr/lib/libfontconfig.so.1.3.0
}
{
libfontconfig malloc Leak #1
Memcheck:Leak
fun:malloc
obj:/usr/lib/libfontconfig.so.1.3.0
}
{
libfontconfig malloc Leak #2
fun:malloc
fun:FcStrCopy
}
# ##----------------------------------------------------------------------##