From fccd2a55e705a991f22f1aa393c9324846d80515 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 18 Feb 2023 20:23:23 +0000 Subject: [PATCH] Revert "Stop persistent-mode fuzzpuzz exiting prematurely" That was completely wrong: a "continue" at the end of the loop is unnecessary. This reverts commit b91f9824b6f73290051025317f3387c7212fa05f. --- fuzzpuzz.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fuzzpuzz.c b/fuzzpuzz.c index f0cb4fb..f4f3b92 100644 --- a/fuzzpuzz.c +++ b/fuzzpuzz.c @@ -161,7 +161,6 @@ int main(int argc, char **argv) } else { fprintf(stderr, "%s\n", err); ret = 1; - continue; } } return ret;