mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-07-02 18:06:48 -04:00
14 lines
223 B
C
14 lines
223 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
__attribute__((optimize(0)))
|
|
int main(void) {
|
|
char *p = malloc(16);
|
|
if (!p) {
|
|
return 1;
|
|
}
|
|
free(p);
|
|
memset(p, 'a', 16);
|
|
return 0;
|
|
}
|