hardened_malloc/test/simple-memory-corruption/eight_byte_overflow_small.c
2018-09-04 09:15:23 -04:00

13 lines
181 B
C

#include <stdlib.h>
__attribute__((optimize(0)))
int main(void) {
char *p = malloc(8);
if (!p) {
return 1;
}
*(p + 8 + 7) = 0;
free(p);
return 0;
}