mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-06-16 02:09:38 -04:00
8 lines
123 B
C
8 lines
123 B
C
#include <stdlib.h>
|
|
|
|
#include "test_util.h"
|
|
|
|
OPTNONE int main(void) {
|
|
char *p = malloc(-8);
|
|
return !(p == NULL);
|
|
}
|