shithub: puzzles

Download patch

ref: b91f9824b6f73290051025317f3387c7212fa05f
parent: 150c05a2989ec5e50768718686c2c997b95af0df
author: Ben Harris <bjh21@bjh21.me.uk>
date: Sat Feb 18 07:28:29 EST 2023

Stop persistent-mode fuzzpuzz exiting prematurely

In the transition to fuzz_one() I'd lost a "continue".

--- a/fuzzpuzz.c
+++ b/fuzzpuzz.c
@@ -161,6 +161,7 @@
         } else {
             fprintf(stderr, "%s\n", err);
             ret = 1;
+            continue;
         }
     }
     return ret;