diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/afl-fuzz.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md index c764d85a..1859eddf 100644 --- a/README.md +++ b/README.md @@ -702,7 +702,7 @@ without feedback, bug reports, or patches from: Nathan Voss Dominik Maier Andrea Biondo Vincent Le Garrec Khaled Yakdan Kuang-che Wu - Josephine Calliotte + Josephine Calliotte Konrad Welc ``` Thank you! diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index cc895f74..f68f063d 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -1024,6 +1024,7 @@ int main(int argc, char** argv, char** envp) { if (most_time * 1000 < cur_ms_lv - start_time) { most_time_key = 2; + stop_soon = 2; break; } @@ -1035,6 +1036,7 @@ int main(int argc, char** argv, char** envp) { if (most_execs <= total_execs) { most_execs_key = 2; + stop_soon = 2; break; } |