hardened_malloc/test/simple-memory-corruption/invalid_malloc_usable_size_small.c
2020-04-29 18:06:15 -04:00

13 lines
202 B
C

#include <malloc.h>
__attribute__((optimize(0)))
int main(void) {
char *p = malloc(16);
if (!p) {
return 1;
}
char *q = p + 4096 * 4;
malloc_usable_size(q);
return 0;
}