fuzz: try to improve coverage (#2883)

Revert of 2b14b46df3
This commit is contained in:
Ivan Nardi 2025-06-14 10:48:16 +02:00 committed by GitHub
parent 80cfd5b2f6
commit 2b3fdb4f8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 4 deletions

View file

@ -13,7 +13,7 @@ static int fastrand ()
}
static void *malloc_wrapper(size_t size) {
return (fastrand () % 256) ? malloc (size) : NULL;
return (fastrand () % 16) ? malloc (size) : NULL;
}
static void free_wrapper(void *freeable) {
free(freeable);