mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
14 lines
192 B
C
14 lines
192 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include "test_util.h"
|
|
|
|
OPTNONE int main(void) {
|
|
char *p = malloc(0);
|
|
if (!p) {
|
|
return 1;
|
|
}
|
|
printf("%c\n", *p);
|
|
return 0;
|
|
}
|