diff options
author | van Hauser <vh@thc.org> | 2020-08-03 18:13:06 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-08-03 18:13:06 +0200 |
commit | ed63364a777dd7a01a0cfdba938888707053e192 (patch) | |
tree | e43aec9fa345ab628a053465721839e6aa6a6919 /examples/afl_untracer/afl-untracer.c | |
parent | 55bd24b0c737b5e89b82dc01f322e4797164c4f1 (diff) | |
download | afl++-ed63364a777dd7a01a0cfdba938888707053e192.tar.gz |
add touch shmem in forkserver, add binary library and patches.txt for easy testing
Diffstat (limited to 'examples/afl_untracer/afl-untracer.c')
-rw-r--r-- | examples/afl_untracer/afl-untracer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/afl_untracer/afl-untracer.c b/examples/afl_untracer/afl-untracer.c index 77b15eb8..f6dbbcd6 100644 --- a/examples/afl_untracer/afl-untracer.c +++ b/examples/afl_untracer/afl-untracer.c @@ -437,6 +437,8 @@ inline static u32 __afl_next_testcase(u8 *buf, u32 max_len) { if (write(FORKSRV_FD + 1, &pid, 4) != 4) do_exit = 1; // fprintf(stderr, "write1 %d\n", do_exit); + __afl_area_ptr[0] = 1; // put something in the map + return status; } |