2018-10-09 03:11:06 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
|
2022-01-22 01:17:21 +05:30
|
|
|
#include "test_util.h"
|
|
|
|
#include "../util.h"
|
2020-06-18 02:09:50 +05:30
|
|
|
|
|
|
|
OPTNONE int main(void) {
|
2018-10-09 03:11:06 +05:30
|
|
|
char *p = malloc(128);
|
|
|
|
if (!p) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
free(p);
|
2022-01-04 23:09:49 +05:30
|
|
|
UNUSED char *q = malloc(128);
|
2018-10-09 03:11:06 +05:30
|
|
|
|
|
|
|
p[65] = 'a';
|
|
|
|
|
|
|
|
// trigger reuse of the allocation
|
|
|
|
for (size_t i = 0; i < 100000; i++) {
|
|
|
|
free(malloc(128));
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|