2018-08-24 03:09:23 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2022-01-21 20:47:21 +01:00
|
|
|
#include "test_util.h"
|
2020-06-17 16:39:50 -04:00
|
|
|
|
|
|
|
OPTNONE int main(void) {
|
2022-01-03 16:11:03 -05:00
|
|
|
char *p = malloc(256 * 1024);
|
2018-08-24 03:09:23 -04:00
|
|
|
if (!p) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
free(p);
|
2018-09-06 23:48:47 -04:00
|
|
|
p[64 * 1024 + 1] = 'a';
|
2018-08-24 03:09:23 -04:00
|
|
|
return 0;
|
|
|
|
}
|