hardened_malloc/test/invalid_malloc_usable_size_...

14 lines
205 B
C
Raw Permalink Normal View History

2020-04-16 04:02:16 +00:00
#include <malloc.h>
#include "test_util.h"
OPTNONE int main(void) {
2020-04-16 04:02:16 +00:00
char *p = malloc(16);
if (!p) {
return 1;
}
char *q = p + 4096 * 4;
malloc_usable_size(q);
return 0;
}