diff options
author | van Hauser <vh@thc.org> | 2020-06-26 09:53:54 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-06-26 09:53:54 +0200 |
commit | da7c5484529edbd2decf1fc4cb910a1420bd7a02 (patch) | |
tree | 8621945fecf10b169306b8f53387124ee909dcc8 | |
parent | 1ecfd784187f2bec19b9040158202cdcdc64f06e (diff) | |
download | afl++-da7c5484529edbd2decf1fc4cb910a1420bd7a02.tar.gz |
afl-plot remove error print
-rwxr-xr-x | afl-plot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/afl-plot b/afl-plot index de344eaa..1074552a 100755 --- a/afl-plot +++ b/afl-plot @@ -68,7 +68,7 @@ if [ ! -f "$inputdir/plot_data" ]; then fi -BANNER="`cat "$inputdir/fuzzer_stats" | grep '^afl_banner ' | cut -d: -f2- | cut -b2-`" +BANNER="`cat "$inputdir/fuzzer_stats" 2> /dev/null | grep '^afl_banner ' | cut -d: -f2- | cut -b2-`" test "$BANNER" = "" && BANNER="(none)" |