ref: 26dd49399614ec9544f66aa95809af437247322e
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); }