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

13 lines
199 B
C
Raw Normal View History

2018-09-04 13:06:23 +00:00
#include <stdlib.h>
__attribute__((optimize(0)))
int main(void) {
char *p = malloc(128 * 1024);
if (!p) {
return 1;
}
*(p + 128 * 1024 + 7) = 0;
free(p);
return 0;
}