All pastes #2051987 Raw Edit

Someone

public text v1 · immutable
#2051987 ·published 2011-04-29 19:14 UTC
rendered paste body
#include <stdlib.h>
#include <string.h>

char *q;

char *test(void)
{
    char *p = malloc(100);
    strcpy(p, q);
    return p;
}