-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathouter_inner.supp
56 lines (51 loc) · 2.33 KB
/
outer_inner.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
52
53
54
55
56
# errors to suppress when an outer runs an inner.
# The below suppressions are assuming --read-inline-info=yes is used.
#==3240== 16 bytes in 1 blocks are definitely lost in loss record 1,723 of 5,952
#==3240== at 0x38035B1B: vgPlain_arena_malloc (m_mallocfree.c:1918)
#==3240== by 0x38037A96: vgPlain_arena_strdup (m_mallocfree.c:2591)
#==3240== by 0x38037A96: vgPlain_strdup (m_mallocfree.c:2663)
#==3240== by 0x3808C880: process_option (m_main.c:456)
# ....
# Note: at startup, we leak twice every option prefixed by the tool name
# and we leak such option if changed dynamically.
{
"keep duplicated args forever as tools can make copies"
Memcheck:Leak
fun:vgPlain_arena_malloc
fun:vgPlain_arena_strdup
fun:vgPlain_strdup
fun:process_option
}
#==4649== 344 bytes in 1 blocks are definitely lost in loss record 75 of 131
#==4649== at 0x2804262C: vgPlain_arena_malloc (m_mallocfree.c:1771)
#==4649== by 0x28042B3E: vgPlain_malloc (m_mallocfree.c:2371)
#==4649== by 0x2808A893: setup_client_env (initimg-linux.c:202)
#==4649== by 0x2808A893: vgPlain_ii_create_image (initimg-linux.c:885)
#==4649== by 0x2803A538: valgrind_main (m_main.c:1839)
#==4649== by 0x2803DB32: _start_in_C_linux (m_main.c:3107)
#==4649== by 0x2803794B: ??? (in /home/philippe/valgrind/inner_trunk_untouched/memcheck/memcheck-x86-linux)
{
"LD_PRELOAD_STRING inserted in env, difficult to free"
Memcheck:Leak
fun:vgPlain_arena_malloc
fun:vgPlain_malloc
fun:setup_client_env
fun:vgPlain_ii_create_image
fun:valgrind_main
}
#==14848== 368 bytes in 1 blocks are definitely lost in loss record 69 of 122
#==14848== at 0x280452C4: vgPlain_arena_malloc (m_mallocfree.c:1771)
#==14848== by 0x28085D7B: setup_client_env (initimg-linux.c:202)
#==14848== by 0x28085D7B: vgPlain_ii_create_image (initimg-linux.c:885)
#==14848== by 0x2803DDF6: valgrind_main (m_main.c:1839)
#==14848== by 0x28040DDB: _start_in_C_linux (m_main.c:3107)
#==14848== by 0x2803B7D0: ??? (in /home/philippe/valgrind/inner_trunk_untouched/memcheck/memcheck-amd64-linux)
{
"LD_PRELOAD_STRING inserted in env, difficult to free"
Memcheck:Leak
fun:vgPlain_arena_malloc
#??????? unclear why this is not in the stacktrace on amd64/gcc20 fun:vgPlain_malloc
fun:setup_client_env
fun:vgPlain_ii_create_image
fun:valgrind_main
}