blob: b75135f26a3fcbed04271a7f7a0119ccc2fe71a4 [file] [log] [blame]
#include <stdlib.h>
void test (void)
{
void *p = malloc (sizeof (int));
if (!p)
return;
int *q = p;
if (!q)
return;
free (q);
}