hardened_malloc/test/uninitialized_realloc.c

12 lines
162 B
C
Raw Normal View History

2018-08-24 09:02:00 +00:00
#include <stdlib.h>
#include "test_util.h"
OPTNONE int main(void) {
2018-08-24 09:02:00 +00:00
void *p = realloc((void *)1, 16);
if (!p) {
return 1;
}
return 0;
}