ref: f1f56304b68bf740f6f282ed270fee7e9f9596e1
dir: /test.c/
#include <u.h> #include <libc.h> void main(int argc, char **argv) { char *x; int a[1024]; int y; x = malloc(123); x[1] = 123; x[124] = 7; y = x[1]; argv[0][0] = y; free(x); argv[0][0] = x[0]; exits(x); }