2018-08-24 12:39:23 +05:30
|
|
|
#include <stdlib.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-09-07 09:18:47 +05:30
|
|
|
char *p = malloc(128);
|
2018-08-24 12:39:23 +05:30
|
|
|
if (!p) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
free(p);
|
2018-09-07 09:18:47 +05:30
|
|
|
|
|
|
|
p[65] = 'a';
|
|
|
|
|
|
|
|
// trigger reuse of the allocation
|
|
|
|
for (size_t i = 0; i < 100000; i++) {
|
|
|
|
free(malloc(128));
|
|
|
|
}
|
2018-08-24 12:39:23 +05:30
|
|
|
return 0;
|
|
|
|
}
|