mirror of
https://github.com/openvswitch/ovs
synced 2025-10-29 15:28:56 +00:00
valgrind reports a memory leak and a parameter error in glibc's timer_create() in almost every program execution. I don't know a way to avoid them. Signed-off-by: Ben Pfaff <blp@nicira.com>
17 lines
216 B
Plaintext
17 lines
216 B
Plaintext
# suppress what appear to unavoidable error reports from glibc
|
|
|
|
{
|
|
timer_create
|
|
Memcheck:Leak
|
|
fun:malloc
|
|
fun:timer_create
|
|
}
|
|
|
|
{
|
|
timer_create
|
|
Memcheck:Param
|
|
timer_create(evp)
|
|
fun:timer_create
|
|
}
|
|
|