argv fuzzing afl-fuzz-inl.h: apply patch from issue#195

@dpmdpm2: Thanks
This commit is contained in:
hexcoder 2020-02-13 19:58:08 +01:00 committed by GitHub
parent 5a114fd840
commit afb23f09cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,7 +53,7 @@
} while (0) } while (0)
#define MAX_CMDLINE_LEN 100000 #define MAX_CMDLINE_LEN 100000
#define MAX_CMDLINE_PAR 1000 #define MAX_CMDLINE_PAR 50000
static char** afl_init_argv(int* argc) { 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) {} if (read(0, in_buf, MAX_CMDLINE_LEN - 2) < 0) {}
while (*ptr) { while (*ptr && rc < MAX_CMDLINE_PAR) {
ret[rc] = ptr; ret[rc] = ptr;
if (ret[rc][0] == 0x02 && !ret[rc][1]) ret[rc]++; if (ret[rc][0] == 0x02 && !ret[rc][1]) ret[rc]++;