diff options
author | hexcoder <hexcoder-@users.noreply.github.com> | 2020-02-19 23:43:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 23:43:25 +0100 |
commit | 76e0381db80587c1f46626d131f5c5467775d053 (patch) | |
tree | e3990ff18443048400b888e62307d5e309ce48fb | |
parent | d375b0e0a3b5cc87f5e8fe8353340edcf15b692b (diff) | |
download | afl++-76e0381db80587c1f46626d131f5c5467775d053.tar.gz |
remove AFL_QUIET from call to afl-showmap
-rwxr-xr-x | afl-cmin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/afl-cmin b/afl-cmin index 41fea8a3..33601f7d 100755 --- a/afl-cmin +++ b/afl-cmin @@ -394,10 +394,10 @@ BEGIN { cur = 0; if (!stdin_file) { print " Processing "in_count" files (forkserver mode)..." - system( "AFL_QUIET=1 AFL_CMIN_ALLOW_ANY=1 \""showmap"\" -m "mem_limit" -t "timeout" -o \""trace_dir"\" -Z "extra_par" -i \""in_dir"\" -- \""target_bin"\" "prog_args_string) + system( "AFL_CMIN_ALLOW_ANY=1 \""showmap"\" -m "mem_limit" -t "timeout" -o \""trace_dir"\" -Z "extra_par" -i \""in_dir"\" -- \""target_bin"\" "prog_args_string) } else { print " Processing "in_count" files (forkserver mode)..." - system( "AFL_QUIET=1 AFL_CMIN_ALLOW_ANY=1 \""showmap"\" -m "mem_limit" -t "timeout" -o \""trace_dir"\" -Z "extra_par" -i \""in_dir"\" -- \""target_bin"\" "prog_args_string" </dev/null") + system( "AFL_CMIN_ALLOW_ANY=1 \""showmap"\" -m "mem_limit" -t "timeout" -o \""trace_dir"\" -Z "extra_par" -i \""in_dir"\" -- \""target_bin"\" "prog_args_string" </dev/null") } ####################################################### |