forked from joto/osmium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalgrind.supp
38 lines (38 loc) · 860 Bytes
/
valgrind.supp
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
#
# Use this with valgrind when checking for memory leaks. This suppresses
# reporting of some problems outside of our control.
#
# For example:
#
# valgrind --suppressions=valgrind.supp --leak-check=full --show-reachable=yes osmium_mpdump foo.osm.pbf
#
{
libz_unitialised_value
Memcheck:Cond
fun:inflateReset2
fun:inflateInit2_
fun:uncompress
}
{
libc_stdio_buffer_c
Memcheck:Leak
fun:_Znam
fun:_ZNSt13basic_filebufIcSt11char_traitsIcEE27_M_allocate_internal_bufferEv
obj:*libstdc++.so.*
fun:_ZNSt8ios_base15sync_with_stdioEb
}
{
libc_stdio_buffer_w
Memcheck:Leak
fun:_Znam
fun:_ZNSt13basic_filebufIwSt11char_traitsIwEE27_M_allocate_internal_bufferEv
obj:*libstdc++.so.*
fun:_ZNSt8ios_base15sync_with_stdioEb
}
{
tmpfile
Memcheck:Leak
fun:malloc
fun:fdopen@@GLIBC_*
fun:tmpfile@@GLIBC_*
}