From e98f68be9483d1b6abc2f9af0ba5995d42f65e62 Mon Sep 17 00:00:00 2001 From: Wolfgang Denk Date: Wed, 28 Sep 2005 01:49:47 +0200 Subject: Fix uninitialized variable problem in hush shell Patch by Lars Rostock, 26 Sep 2005 --- common/hush.c | 1 + 1 file changed, 1 insertion(+) (limited to 'common/hush.c') diff --git a/common/hush.c b/common/hush.c index eb7f7f1560..c10b1176f6 100644 --- a/common/hush.c +++ b/common/hush.c @@ -2389,6 +2389,7 @@ struct pipe *new_pipe(void) { pi->progs = NULL; pi->next = NULL; pi->followup = 0; /* invalid */ + pi->r_mode = RES_NONE; return pi; } -- cgit v1.2.3