From aef93efb5d3e4d46d6f05296cbf858263dddb5d0 Mon Sep 17 00:00:00 2001 From: rpjday Date: Tue, 18 Jul 2006 12:05:43 +0000 Subject: For now, get around the error that "child" might be uninitialized. git-svn-id: svn://busybox.net/trunk/busybox@15717 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- shell/hush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell/hush.c') 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; -- cgit v1.2.3-55-g6feb