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

9 lines
107 B
C

#include <stdlib.h>
#include "test_util.h"
OPTNONE int main(void) {
free((void *)1);
return 0;
}