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