hardened_malloc/test/overflow_small_1_byte.c

16 lines
244 B
C
Raw Normal View History

2022-01-03 21:24:31 -05:00
#include <malloc.h>
2018-09-04 09:06:23 -04:00
#include <stdlib.h>
#include "test_util.h"
OPTNONE int main(void) {
2018-09-04 09:06:23 -04:00
char *p = malloc(8);
if (!p) {
return 1;
}
size_t size = malloc_usable_size(p);
2022-01-03 21:20:15 -05:00
*(p + size) = 1;
2018-09-04 09:06:23 -04:00
free(p);
return 0;
}