mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
valgrind: Fix FUSE memory leak suppression.
(cherry picked from commit 626ca8e74f)
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user