Uninitialized variable causing intermittent syntax errors (bug 449).

This commit is contained in:
Rob Landley 2005-12-12 06:52:45 +00:00
parent cdbae77823
commit 032e2cbf20

View File

@ -2007,6 +2007,7 @@ static struct pipe *new_pipe(void) {
pi->progs = NULL;
pi->next = NULL;
pi->followup = 0; /* invalid */
pi->r_mode = RES_NONE;
return pi;
}