hardened_malloc/test/string_overflow.c

21 lines
336 B
C
Raw Normal View History

2018-10-03 21:15:38 +00:00
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <malloc.h>
#include "test_util.h"
OPTNONE int main(void) {
2018-10-03 21:15:38 +00:00
char *p = malloc(16);
if (!p) {
return 1;
}
size_t size = malloc_usable_size(p);
memset(p, 'a', size);
printf("overflow by %zu bytes\n", strlen(p) - size);
return 0;
}