valgrind: Fix FUSE memory leak suppression.

(cherry picked from commit 626ca8e74f)
This commit is contained in:
Richard W.M. Jones
2012-10-14 12:54:02 +01:00
parent 27114fc026
commit 41dbcdf94f

View File

@@ -190,10 +190,18 @@
}
# FUSE leaks the per-thread context (although the code looks
# like it attempts to clean it up).
# like it attempts to clean it up). In older fuse, it uses
# malloc. In newer fuse it uses calloc.
{
fuse_leak
fuse_leak_1
Memcheck:Leak
fun:malloc
fun:fuse_get_context_internal
}
{
fuse_leak_2
Memcheck:Leak
fun:calloc
fun:fuse_get_context_internal
}