mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
15 lines
226 B
C
15 lines
226 B
C
#include <stdlib.h>
|
|
|
|
#include "test_util.h"
|
|
|
|
OPTNONE int main(void) {
|
|
char *p = malloc(8);
|
|
for (unsigned i = 0; i < 8; i++) {
|
|
if (p[i] != 0) {
|
|
return 1;
|
|
}
|
|
}
|
|
free(p);
|
|
return 0;
|
|
}
|