mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 07:26:15 +01:00
valgrind: Add false positive to suppressions file
Valgrind will check that the third argument to ioctl() is a valid pointer, but some ioctls interpret that argument as an integer, and that is the case here (it's a file descriptor), so this is a false positive. https://bugzilla.gnome.org/show_bug.cgi?id=787109
This commit is contained in:
parent
e5eaca5492
commit
a72f57eeab
10
glib.supp
10
glib.supp
@ -232,6 +232,16 @@
|
||||
fun:_g_io_module_get_default
|
||||
}
|
||||
|
||||
# memcheck checks that the third argument to ioctl() is a valid pointer, but
|
||||
# some ioctls use that argument as an integer
|
||||
{
|
||||
ioctl-with-non-pointer-param
|
||||
Memcheck:Param
|
||||
ioctl(generic)
|
||||
fun:ioctl
|
||||
fun:btrfs_reflink_with_progress
|
||||
}
|
||||
|
||||
{
|
||||
g-private-get
|
||||
drd:ConflictingAccess
|
||||
|
Loading…
Reference in New Issue
Block a user