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

9 lines
110 B
C
Raw Normal View History

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