hardened_malloc/test/simple-memory-corruption/invalid_malloc_usable_size_small.c

13 lines
202 B
C
Raw Normal View History

2020-04-16 04:02:16 +00:00
#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;
}