hardened_malloc/test/double_free_large.c

14 lines
184 B
C
Raw Normal View History

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