hardened_malloc/test/simple-memory-corruption/overflow_large_8_byte.c
2022-01-03 21:20:15 -05:00

15 lines
240 B
C

#include <stdlib.h>
#include "../test_util.h"
OPTNONE int main(void) {
char *p = malloc(256 * 1024);
if (!p) {
return 1;
}
size_t size = malloc_usable_size(p);
*(p + size + 7) = 0;
free(p);
return 0;
}