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

18 lines
250 B
C

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