2018-10-04 02:45:38 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <malloc.h>
|
|
|
|
|
2022-01-22 01:17:21 +05:30
|
|
|
#include "test_util.h"
|
2020-06-18 02:09:50 +05:30
|
|
|
|
|
|
|
OPTNONE int main(void) {
|
2018-10-04 02:45:38 +05:30
|
|
|
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;
|
|
|
|
}
|