about summary refs log tree commit diff
path: root/llvm_mode/README.persistent_mode.md
diff options
context:
space:
mode:
Diffstat (limited to 'llvm_mode/README.persistent_mode.md')
-rw-r--r--llvm_mode/README.persistent_mode.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm_mode/README.persistent_mode.md b/llvm_mode/README.persistent_mode.md
index b092de54..7aae8faa 100644
--- a/llvm_mode/README.persistent_mode.md
+++ b/llvm_mode/README.persistent_mode.md
@@ -32,8 +32,7 @@ main() {
   while (__AFL_LOOP(10000)) {
 
     int len = __AFL_FUZZ_TESTCASE_LEN;
-
-    if (len < 8) return 0;  // check for a required/useful minimum input length
+    if (len < 8) continue;  // check for a required/useful minimum input length
 
     /* Setup function call, e.g. struct target *tmp = libtarget_init() */
     /* Call function to be fuzzed, e.g.: */