diff options
-rw-r--r-- | examples/argv_fuzzing/argv-fuzz-inl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/argv_fuzzing/argv-fuzz-inl.h b/examples/argv_fuzzing/argv-fuzz-inl.h index 4d880020..5644f7e4 100644 --- a/examples/argv_fuzzing/argv-fuzz-inl.h +++ b/examples/argv_fuzzing/argv-fuzz-inl.h @@ -53,7 +53,7 @@ } while (0) #define MAX_CMDLINE_LEN 100000 -#define MAX_CMDLINE_PAR 1000 +#define MAX_CMDLINE_PAR 50000 static char** afl_init_argv(int* argc) { @@ -65,7 +65,7 @@ static char** afl_init_argv(int* argc) { if (read(0, in_buf, MAX_CMDLINE_LEN - 2) < 0) {} - while (*ptr) { + while (*ptr && rc < MAX_CMDLINE_PAR) { ret[rc] = ptr; if (ret[rc][0] == 0x02 && !ret[rc][1]) ret[rc]++; |