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