diff options
Diffstat (limited to 'examples/afl-proxy/afl-proxy.c')
-rw-r--r-- | examples/afl-proxy/afl-proxy.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/examples/afl-proxy/afl-proxy.c b/examples/afl-proxy/afl-proxy.c index 7d25421d..eea03549 100644 --- a/examples/afl-proxy/afl-proxy.c +++ b/examples/afl-proxy/afl-proxy.c @@ -163,14 +163,7 @@ static void __afl_map_shm(void) { static void __afl_start_forkserver(void) { u8 tmp[4] = {0, 0, 0, 0}; - s32 child_pid; u32 status = 0; - u32 already_read_first = 0; - u32 was_killed; - - u8 child_stopped = 0; - - void (*old_sigchld_handler)(int) = 0; // = signal(SIGCHLD, SIG_DFL); if (__afl_map_size <= FS_OPT_MAX_MAPSIZE) status |= (FS_OPT_SET_MAPSIZE(__afl_map_size) | FS_OPT_MAPSIZE); @@ -239,3 +232,4 @@ int main(int argc, char *argv[]) { return 0; } + |