diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-04-16 15:32:04 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-16 15:32:04 +0200 |
commit | b10007a7b5bcc231c98f9150b073daf3f1b18c95 (patch) | |
tree | 0489510c23877e7f2eb560c6cd3fe95dc5f997e2 /src/afl-fuzz-bitmap.c | |
parent | 19ce862810e504494af8e92717b57ca15cb2480b (diff) | |
download | afl++-b10007a7b5bcc231c98f9150b073daf3f1b18c95.tar.gz |
renamed duplicated func names
Diffstat (limited to 'src/afl-fuzz-bitmap.c')
-rw-r--r-- | src/afl-fuzz-bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-bitmap.c b/src/afl-fuzz-bitmap.c index 92966c8c..6042b4b8 100644 --- a/src/afl-fuzz-bitmap.c +++ b/src/afl-fuzz-bitmap.c @@ -653,7 +653,7 @@ u8 save_if_interesting(afl_state_t *afl, void *mem, u32 len, u8 fault) { u8 new_fault; write_to_testcase(afl, mem, len); - new_fault = run_target(afl, &afl->fsrv, afl->hang_tmout); + new_fault = fuzz_run_target(afl, &afl->fsrv, afl->hang_tmout); /* A corner case that one user reported bumping into: increasing the timeout actually uncovers a crash. Make sure we don't discard it if |