mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-06 15:21:32 +00:00
set errno=0 when no afl-fuzz present
This commit is contained in:
parent
fa1ac051eb
commit
affe7cf5b4
@ -940,7 +940,12 @@ static void __afl_start_forkserver(void) {
|
||||
|
||||
}
|
||||
|
||||
if (write(FORKSRV_FD + 1, msg, 4) != 4) { _exit(1); }
|
||||
if (write(FORKSRV_FD + 1, msg, 4) != 4) {
|
||||
|
||||
errno = 0;
|
||||
_exit(1);
|
||||
|
||||
}
|
||||
|
||||
// Now send the parameters for the set options, increasing by option number
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user