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

19 lines
272 B
C
Raw Normal View History

2018-08-24 09:53:17 +00:00
#include <stdlib.h>
#include "../test_util.h"
OPTNONE int main(void) {
2022-01-03 21:11:03 +00:00
void *p = malloc(256 * 1024);
2018-08-24 09:53:17 +00:00
if (!p) {
return 1;
}
2022-01-03 21:11:03 +00:00
void *q = malloc(256 * 1024);
2018-08-24 09:53:17 +00:00
if (!q) {
return 1;
}
free(p);
free(q);
free(p);
return 0;
}