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

15 lines
238 B
C
Raw Normal View History

#include <stdlib.h>
#include "../test_util.h"
OPTNONE int main(void) {
char *p = malloc(128 * 1024);
for (unsigned i = 0; i < 8; i++) {
if (p[i] != 0) {
return 1;
}
}
free(p);
return 0;
}