ash: s/ckzmalloc/ckzalloc/

This commit is contained in:
Denis Vlasenko 2008-02-21 04:35:14 +00:00
parent 838ffd5be2
commit 6aa74fcf5b

View File

@ -8887,7 +8887,7 @@ pushstring(char *s, void *ap)
INT_OFF;
/*dprintf("*** calling pushstring: %s, %d\n", s, len);*/
if (parsefile->strpush) {
sp = ckzmalloc(sizeof(struct strpush));
sp = ckzalloc(sizeof(struct strpush));
sp->prev = parsefile->strpush;
parsefile->strpush = sp;
} else