valgrind-suppressions.txt (299B)
1 # dl_init and dl_open are known to have memory leaks 2 # this is a glibc issue, not ours 3 { 4 glibc_dl_init 5 Memcheck:Leak 6 match-leak-kinds: reachable 7 fun:*alloc 8 ... 9 fun:_dl_init 10 } 11 { 12 glibc_dl_open 13 Memcheck:Leak 14 match-leak-kinds: reachable 15 fun:*alloc 16 ... 17 fun:_dl_open 18 }