diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-12-12 06:52:45 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-12-12 06:52:45 +0000 |
commit | 72dccd8fcace576e1908f93e3dfc0ca660815af2 (patch) | |
tree | c9026a2111195507c24859f6ad9b77bdda0553a9 /shell | |
parent | 581213b9dda9db48749c777ef5348527b3158b5c (diff) | |
download | busybox-w32-72dccd8fcace576e1908f93e3dfc0ca660815af2.tar.gz busybox-w32-72dccd8fcace576e1908f93e3dfc0ca660815af2.tar.bz2 busybox-w32-72dccd8fcace576e1908f93e3dfc0ca660815af2.zip |
Uninitialized variable causing intermittent syntax errors (bug 449).
git-svn-id: svn://busybox.net/trunk/busybox@12842 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/hush.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/hush.c b/shell/hush.c index ffc4685d6..e83d49a86 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -2007,6 +2007,7 @@ static struct pipe *new_pipe(void) { | |||
2007 | pi->progs = NULL; | 2007 | pi->progs = NULL; |
2008 | pi->next = NULL; | 2008 | pi->next = NULL; |
2009 | pi->followup = 0; /* invalid */ | 2009 | pi->followup = 0; /* invalid */ |
2010 | pi->r_mode = RES_NONE; | ||
2010 | return pi; | 2011 | return pi; |
2011 | } | 2012 | } |
2012 | 2013 | ||