replaced calloc with mh_xcalloc
[mmh] / uip / mhl.c
index c201a95..f3f7477 100644 (file)
--- a/uip/mhl.c
+++ b/uip/mhl.c
@@ -781,7 +781,7 @@ mcomp_format(struct mcomp *c1, struct mcomp *c2)
        (q = &pq)->pq_next = NULL;
        while ((cp = getname(ap))) {
                if ((p = (struct pqpair *)
-                               calloc((size_t) 1, sizeof(*p))) == NULL)
+                               mh_xcalloc((size_t) 1, sizeof(*p))) == NULL)
                        adios(EX_OSERR, NULL, "unable to allocate pqpair memory");
 
                if ((mp = getm(cp, NULL, 0, AD_NAME, error)) == NULL) {
@@ -829,7 +829,7 @@ add_queue(struct mcomp **head, struct mcomp **tail, char *name,
 {
        struct mcomp *c1;
 
-       if ((c1 = (struct mcomp *) calloc((size_t) 1, sizeof(*c1))) == NULL)
+       if ((c1 = (struct mcomp *) mh_xcalloc((size_t) 1, sizeof(*c1))) == NULL)
                adios(EX_OSERR, NULL, "unable to allocate comp memory");
 
        c1->c_flags = flags & ~INIT;