Files
hardened_malloc/test/impossibly_large_malloc.c
2022-01-21 15:00:18 -05:00

10 lines
143 B
C

#include <malloc.h>
#include <stddef.h>
#include "test_util.h"
OPTNONE int main(void) {
char *p = malloc(-8);
return !(p == NULL);
}