| #include "malloc_wrappers.h" |
| static size_t alloc_count = 0; |
| /* Allocate memory and place check values before and after. */ |
| void* malloc_with_check(size_t size) |
| size_t size32 = (size + 3) / 4 + 3; |
| uint32_t *buf = malloc(size32 * sizeof(uint32_t)); |
| buf[size32 - 1] = 0xBADBAD; |
| /* Free memory allocated with malloc_with_check() and do the checks. */ |
| void free_with_check(void *mem) |
| uint32_t *buf = (uint32_t*)mem - 2; |
| assert(buf[1] == 0xDEADBEEF); |
| assert(buf[buf[0] - 1] == 0xBADBAD); |
| void* counting_realloc(void *ptr, size_t size) |
| /* Don't allocate crazy amounts of RAM when fuzzing */ |
| return realloc(ptr, size); |
| void counting_free(void *ptr) |