2022-01-03 21:24:31 -05:00
|
|
|
#include <malloc.h>
|
2018-09-04 09:06:23 -04:00
|
|
|
#include <stdlib.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) {
|
2018-09-04 09:06:23 -04:00
|
|
|
char *p = malloc(8);
|
|
|
|
if (!p) {
|
|
|
|
return 1;
|
|
|
|
}
|
2022-01-03 21:11:31 -05:00
|
|
|
size_t size = malloc_usable_size(p);
|
2022-01-03 21:23:14 -05:00
|
|
|
// XOR is used to avoid the test having a 1/256 chance to fail
|
2022-01-03 21:11:31 -05:00
|
|
|
*(p + size + 7) ^= 1;
|
2018-09-04 09:06:23 -04:00
|
|
|
free(p);
|
|
|
|
return 0;
|
|
|
|
}
|