From: "Robert P. J. Day" Date: Tue, 18 Jul 2006 12:05:43 +0000 (-0000) Subject: For now, get around the error that "child" might be uninitialized. X-Git-Tag: 1_2_0~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3e4da920bd114b87fcfd6ff0c0bc1b5e880766f9;p=oweals%2Fbusybox.git For now, get around the error that "child" might be uninitialized. --- diff --git a/shell/hush.c b/shell/hush.c index 6b6c54f3b..fedb784e4 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -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;