mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 11:29:46 +00:00
2b084c9886
We don't specify trailing unused args for some syscalls
(e.g. ioctl that does not use its arg).
Executor always filled tailing unsed args with 0's
but pkg/csource didn't. Some such syscalls actually
check that the unsed arg is 0 and as the result failed with C repro.
We could statically check and eliminate all such cases,
but it turns out the warning fires in 1500+ cases:
|
||
---|---|---|
.. | ||
gen | ||
fs_amd64.const | ||
fs.txt | ||
init.go | ||
ipc_amd64.const | ||
ipc.txt | ||
mm_amd64.const | ||
mm.txt | ||
socket_amd64.const | ||
socket_inet6_amd64.const | ||
socket_inet6.txt | ||
socket_inet_amd64.const | ||
socket_inet.txt | ||
socket_unix_amd64.const | ||
socket_unix.txt | ||
socket.txt | ||
sys_amd64.const | ||
sys.txt |