ash: s/ckzmalloc/ckzalloc/
authorDenis Vlasenko <vda.linux@googlemail.com>
Thu, 21 Feb 2008 04:35:14 +0000 (04:35 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Thu, 21 Feb 2008 04:35:14 +0000 (04:35 -0000)
shell/ash.c

index 10c0b61100534297c08b4539f68adc0b816ae78e..9c762e2ed826039f704c21f41cf67ac9245ca5fe 100644 (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