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

15 lines
239 B
C
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
__attribute__((optimize(0)))
int main(void) {
char *p = malloc(128 * 1024);
if (!p) {
return 1;
}
free(p);
memset(p, 'a', 128 * 1024);
return 0;
}