From 032e2cbf20bd54a7b5ded482ed1ba9d3deb574f9 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 12 Dec 2005 06:52:45 +0000 Subject: [PATCH] Uninitialized variable causing intermittent syntax errors (bug 449). --- shell/hush.c | 1 + 1 file changed, 1 insertion(+) 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) { pi->progs = NULL; pi->next = NULL; pi->followup = 0; /* invalid */ + pi->r_mode = RES_NONE; return pi; } -- 2.25.1