-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmemcheck.supp
51 lines (43 loc) · 1.01 KB
/
memcheck.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
39
40
41
42
43
44
45
46
47
48
49
50
51
# Use this with sratool by:
#
# /usr/bin/valgrind.bin --tool=memcheck --leak-check=full --show-reachable=yes --track-origins=yes --suppressions=../memcheck.supp ./sratool "count 100; connect ssh:[email protected]; 1 watch ch 204; ch 204 on"
#
# Use it with sratunnel by
#
# /usr/bin/valgrind.bin --tool=memcheck --leak-check=full --show-reachable=yes --track-origins=yes --suppressions=../memcheck.supp ./sratunnel -C 100 -s ssh:[email protected] -w "ch 204" -c 204 -o nmsg:127.0.0.1,9001
# libnmsg has no cleanup function
{
libnmsg
Memcheck:Leak
fun:calloc
fun:_dlerror_run
...
obj:*/libnmsg.*
fun:nmsg_init
...
}
# Editline has no cleanup function
{
editline1
Memcheck:Leak
...
obj:*/libedit.so*
fun:el_init
fun:main
}
{
editline2
Memcheck:Leak
...
obj:*/libedit.so*
fun:el_gets
fun:main
}
# There is too much noise from OpenSSL to find anything real.
{
OpenSSL/config
Memcheck:Leak
...
obj:*/libcrypto.so*
...
}