aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorrpjday <rpjday@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-07-18 12:05:43 +0000
committerrpjday <rpjday@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-07-18 12:05:43 +0000
commitaef93efb5d3e4d46d6f05296cbf858263dddb5d0 (patch)
tree14865eba3676bb40160fc90c75f5db00c0cc74a1 /shell
parent19884f485382fb5dd73611e2a85eab55be50bb5c (diff)
downloadbusybox-w32-aef93efb5d3e4d46d6f05296cbf858263dddb5d0.tar.gz
busybox-w32-aef93efb5d3e4d46d6f05296cbf858263dddb5d0.tar.bz2
busybox-w32-aef93efb5d3e4d46d6f05296cbf858263dddb5d0.zip
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
Diffstat (limited to 'shell')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
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)
1284 int i; 1284 int i;
1285 int nextin, nextout; 1285 int nextin, nextout;
1286 int pipefds[2]; /* pipefds[0] is for reading */ 1286 int pipefds[2]; /* pipefds[0] is for reading */
1287 struct child_prog *child; 1287 struct child_prog *child = NULL;
1288 const struct built_in_command *x; 1288 const struct built_in_command *x;
1289 char *p; 1289 char *p;
1290 1290