shithub: 5v

ref: f1f56304b68bf740f6f282ed270fee7e9f9596e1
dir: 5v/test.c

View raw version
#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);
}