shithub: fuzz

Download patch

ref: 3a076c577d68d35d9ba3f89add48c65245ba6cd4
parent: 6c3d2706048bced9330aaa0b311acc5d664f5e31
author: Anthony House <tuffant21@aim.com>
date: Sat Nov 24 13:32:40 EST 2018

changing max_size to 2048

--- a/mutate.c
+++ b/mutate.c
@@ -57,7 +57,7 @@
     if(*round != ROUND_NUM)
         free(*in_val);
 
-    const int MAX_SIZE = 1024;
+    const int MAX_SIZE = 2048;
     int size = rand() % MAX_SIZE + 1;
 
     *in_val = malloc(sizeof(char) * size);