aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 10c0b6110..9c762e2ed 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -8887,7 +8887,7 @@ pushstring(char *s, void *ap)
8887 INT_OFF; 8887 INT_OFF;
8888/*dprintf("*** calling pushstring: %s, %d\n", s, len);*/ 8888/*dprintf("*** calling pushstring: %s, %d\n", s, len);*/
8889 if (parsefile->strpush) { 8889 if (parsefile->strpush) {
8890 sp = ckzmalloc(sizeof(struct strpush)); 8890 sp = ckzalloc(sizeof(struct strpush));
8891 sp->prev = parsefile->strpush; 8891 sp->prev = parsefile->strpush;
8892 parsefile->strpush = sp; 8892 parsefile->strpush = sp;
8893 } else 8893 } else