hardened_malloc/test/write_after_free_large.c

14 lines
199 B
C
Raw Permalink Normal View History

#include <stdlib.h>
#include "test_util.h"
OPTNONE int main(void) {
2022-01-03 21:11:03 +00:00
char *p = malloc(256 * 1024);
if (!p) {
return 1;
}
free(p);
2018-09-07 03:48:47 +00:00
p[64 * 1024 + 1] = 'a';
return 0;
}