hardened_malloc/test/uninitialized_free.c

9 lines
107 B
C
Raw Permalink Normal View History

2018-08-24 14:32:00 +05:30
#include <stdlib.h>
#include "test_util.h"
OPTNONE int main(void) {
2018-08-24 14:32:00 +05:30
free((void *)1);
return 0;
}