Closed athre0z closed 1 year ago
fread does internal buffering that can result in different code paths to be taken every time we call it. This is detrimental for fuzzing stability in persistent mode. This PR changes the code to use a direct read syscall on POSIX.
fread
read
fread
does internal buffering that can result in different code paths to be taken every time we call it. This is detrimental for fuzzing stability in persistent mode. This PR changes the code to use a directread
syscall on POSIX.