svn commit: trunk/busybox/shell

landley at busybox.net landley at busybox.net
Mon Dec 12 06:53:00 UTC 2005


Author: landley
Date: 2005-12-11 22:52:45 -0800 (Sun, 11 Dec 2005)
New Revision: 12842

Log:
Uninitialized variable causing intermittent syntax errors (bug 449).


Modified:
   trunk/busybox/shell/hush.c


Changeset:
Modified: trunk/busybox/shell/hush.c
===================================================================
--- trunk/busybox/shell/hush.c	2005-12-12 06:49:33 UTC (rev 12841)
+++ trunk/busybox/shell/hush.c	2005-12-12 06:52:45 UTC (rev 12842)
@@ -2007,6 +2007,7 @@
 	pi->progs = NULL;
 	pi->next = NULL;
 	pi->followup = 0;  /* invalid */
+	pi->r_mode = RES_NONE;
 	return pi;
 }
 




More information about the busybox-cvs mailing list