diff options
-rw-r--r-- | fuzz/fuzz_common_code.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/fuzz_common_code.c b/fuzz/fuzz_common_code.c index 47fb772af..0e5f9c812 100644 --- a/fuzz/fuzz_common_code.c +++ b/fuzz/fuzz_common_code.c @@ -13,7 +13,7 @@ static int fastrand () } static void *malloc_wrapper(size_t size) { - return (fastrand () % 16) ? malloc (size) : NULL; + return (fastrand () % 256) ? malloc (size) : NULL; } static void free_wrapper(void *freeable) { free(freeable); |