diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-21 04:35:14 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-21 04:35:14 +0000 |
commit | 6aa74fcf5bc5f6b209b578754fc098714bc8485d (patch) | |
tree | 64789b0bdac72f4343e91ac71c738d030418b343 | |
parent | 838ffd5be2676e3b7317a26ec78e5643819afc70 (diff) | |
download | busybox-w32-6aa74fcf5bc5f6b209b578754fc098714bc8485d.tar.gz busybox-w32-6aa74fcf5bc5f6b209b578754fc098714bc8485d.tar.bz2 busybox-w32-6aa74fcf5bc5f6b209b578754fc098714bc8485d.zip |
ash: s/ckzmalloc/ckzalloc/
-rw-r--r-- | shell/ash.c | 2 |
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 |