Skip to content

Commit

Permalink
Ignore valgrind uninitialized mmeory error in emulated send()
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpitt committed Jan 2, 2025
1 parent 43f1e39 commit baa934f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/valgrind.supp
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,15 @@
fun:_dl_relocate_object
...
}
# ioctl emulation reads the client memory unconditionally; even for a read() call, as that is simpler overall
{
remote_emulate_send_uninited
Memcheck:Param
socketcall.sendto(msg)
...
fun:__libc_send
fun:send
fun:remote_emulate
fun:read
...
}

0 comments on commit baa934f

Please sign in to comment.