projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
838ffd5
)
ash: s/ckzmalloc/ckzalloc/
author
Denis Vlasenko
<vda.linux@googlemail.com>
Thu, 21 Feb 2008 04:35:14 +0000
(
04:35
-0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Thu, 21 Feb 2008 04:35:14 +0000
(
04:35
-0000)
shell/ash.c
patch
|
blob
|
history
diff --git
a/shell/ash.c
b/shell/ash.c
index 10c0b61100534297c08b4539f68adc0b816ae78e..9c762e2ed826039f704c21f41cf67ac9245ca5fe 100644
(file)
--- a/
shell/ash.c
+++ b/
shell/ash.c
@@
-8887,7
+8887,7
@@
pushstring(char *s, void *ap)
INT_OFF;
/*dprintf("*** calling pushstring: %s, %d\n", s, len);*/
if (parsefile->strpush) {
- sp = ckz
m
alloc(sizeof(struct strpush));
+ sp = ckzalloc(sizeof(struct strpush));
sp->prev = parsefile->strpush;
parsefile->strpush = sp;
} else