hardened_malloc/test/overflow_small_8_byte.c

17 lines
316 B
C
Raw Permalink Normal View History

2022-01-04 02:24:31 +00:00
#include <malloc.h>
2018-09-04 13:06:23 +00:00
#include <stdlib.h>
#include "test_util.h"
OPTNONE int main(void) {
2018-09-04 13:06:23 +00:00
char *p = malloc(8);
if (!p) {
return 1;
}
size_t size = malloc_usable_size(p);
// XOR is used to avoid the test having a 1/256 chance to fail
*(p + size + 7) ^= 1;
2018-09-04 13:06:23 +00:00
free(p);
return 0;
}