hardened_malloc/test/simple-memory-corruption/double_free_large_delayed.c
2018-08-24 05:53:17 -04:00

18 lines
266 B
C

#include <stdlib.h>
__attribute__((optimize(0)))
int main(void) {
void *p = malloc(128 * 1024);
if (!p) {
return 1;
}
void *q = malloc(128 * 1024);
if (!q) {
return 1;
}
free(p);
free(q);
free(p);
return 0;
}