diff options
author | vanhauser-thc <vh@thc.org> | 2022-05-09 13:18:14 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-05-09 13:18:14 +0200 |
commit | 51942b605d6fcb22d85c1fe1a845b6ec2839e793 (patch) | |
tree | 32434c0f086a175ff9cf6515e3803876f8b78887 /src/afl-fuzz-cmplog.c | |
parent | 47dae21f4a0da74e3e454f637285baebf0567491 (diff) | |
download | afl++-51942b605d6fcb22d85c1fe1a845b6ec2839e793.tar.gz |
support post_process's own return buffer
Diffstat (limited to 'src/afl-fuzz-cmplog.c')
-rw-r--r-- | src/afl-fuzz-cmplog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-cmplog.c b/src/afl-fuzz-cmplog.c index 7d94085d..258d9ea7 100644 --- a/src/afl-fuzz-cmplog.c +++ b/src/afl-fuzz-cmplog.c @@ -49,7 +49,7 @@ u8 common_fuzz_cmplog_stuff(afl_state_t *afl, u8 *out_buf, u32 len) { u8 fault; - write_to_testcase(afl, out_buf, len, 0); + write_to_testcase(afl, (void **)&out_buf, len, 0); fault = fuzz_run_target(afl, &afl->cmplog_fsrv, afl->fsrv.exec_tmout); |