For now, get around the error that "child" might be uninitialized.

This commit is contained in:
"Robert P. J. Day" 2006-07-18 12:05:43 +00:00
parent fc2aea1a76
commit 3e4da920bd

View File

@ -1284,7 +1284,7 @@ static int run_pipe_real(struct pipe *pi)
int i;
int nextin, nextout;
int pipefds[2]; /* pipefds[0] is for reading */
struct child_prog *child;
struct child_prog *child = NULL;
const struct built_in_command *x;
char *p;