diff options
author | van Hauser <vh@thc.org> | 2020-02-03 23:37:20 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-02-03 23:37:20 +0100 |
commit | 43b26ca18839f674747df0db0fc3f10818cb8823 (patch) | |
tree | 74518d8ded5a1e114d6a401a6348b547a983e449 /src | |
parent | 7c506d2e9ea006d56967f99f8ed292d1a42dfe33 (diff) | |
download | afl++-43b26ca18839f674747df0db0fc3f10818cb8823.tar.gz |
remove duplicate check
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-showmap.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index ddf5c4ce..5061ca31 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -721,7 +721,6 @@ int main(int argc, char** argv) { switch (opt) { case 'i': - if (at_file) FATAL("-i and -A are mutually exclusive"); if (in_dir) FATAL("Multiple -i options not supported"); in_dir = optarg; break; @@ -816,8 +815,6 @@ int main(int argc, char** argv) { break; case 'A': - if (in_dir) FATAL("-i and -A are mutually exclusive"); - /* Another afl-cmin specific feature. */ at_file = optarg; break; |