about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-02-03 23:37:20 +0100
committervan Hauser <vh@thc.org>2020-02-03 23:37:20 +0100
commit43b26ca18839f674747df0db0fc3f10818cb8823 (patch)
tree74518d8ded5a1e114d6a401a6348b547a983e449 /src
parent7c506d2e9ea006d56967f99f8ed292d1a42dfe33 (diff)
downloadafl++-43b26ca18839f674747df0db0fc3f10818cb8823.tar.gz
remove duplicate check
Diffstat (limited to 'src')
-rw-r--r--src/afl-showmap.c3
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;