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

19 lines
303 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../test_util.h"
OPTNONE int main(void) {
char *p = malloc(16);
if (!p) {
return 1;
}
memset(p, 'a', 16);
free(p);
for (size_t i = 0; i < 16; i++) {
printf("%x\n", p[i]);
}
return 0;
}