no binary checking in noninstrumented mode

This commit is contained in:
hexcoder- 2020-11-14 11:31:18 +01:00
parent 81493e4fe1
commit bd313d4039

View File

@ -1338,11 +1338,11 @@ int main(int argc, char **argv_orig, char **envp) {
} }
if (!afl->fsrv.qemu_mode) { check_binary(afl, afl->cmplog_binary); } if (!afl->fsrv.qemu_mode && !afl->non_instrumented_mode) { check_binary(afl, afl->cmplog_binary); }
} }
check_binary(afl, argv[optind]); if (afl->non_instrumented_mode) check_binary(afl, argv[optind]);
if (afl->shmem_testcase_mode) { setup_testcase_shmem(afl); } if (afl->shmem_testcase_mode) { setup_testcase_shmem(afl); }