hardened_malloc/test/simple-memory-corruption/uninitialized_free.c

9 lines
110 B
C

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