diff options
author | hexcoder- <heiko@hexco.de> | 2020-11-14 12:28:51 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-11-14 12:28:51 +0100 |
commit | 30cd8a8397419b3eedb6ee939e290b4c6b8c2cf1 (patch) | |
tree | 835b143a7f20e82548041ccb1b317f511ac838a9 /src/afl-fuzz-init.c | |
parent | bd313d4039d094c0caf657b4ed1a666da7eded1b (diff) | |
download | afl++-30cd8a8397419b3eedb6ee939e290b4c6b8c2cf1.tar.gz |
fix non instrumented mode, fix check_binary
Diffstat (limited to 'src/afl-fuzz-init.c')
-rw-r--r-- | src/afl-fuzz-init.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c index 19a8d77b..01929a0a 100644 --- a/src/afl-fuzz-init.c +++ b/src/afl-fuzz-init.c @@ -2300,12 +2300,6 @@ void fix_up_sync(afl_state_t *afl) { u8 *x = afl->sync_id; - if (afl->non_instrumented_mode) { - - FATAL("-S / -M and -n are mutually exclusive"); - - } - while (*x) { if (!isalnum(*x) && *x != '_' && *x != '-') { |