replaced calloc with mh_xcalloc
[mmh] / uip / rcvdist.c
index 89bb1dc..1337c89 100644 (file)
@@ -171,11 +171,11 @@ rcvdistout(FILE *inb, char *form, char *addrs)
        format_len = strlen(cp);
        ncomps = fmt_compile(cp, &fmt) + 1;
        if (!(nxtbuf = compbuffers =
-                       (char **) calloc((size_t) ncomps, sizeof(char *)))) {
+                       (char **) mh_xcalloc((size_t) ncomps, sizeof(char *)))) {
                adios(EX_OSERR, NULL, "unable to allocate component buffers");
        }
        if (!(savecomp = used_buf =
-                       (struct comp **) calloc((size_t) (ncomps + 1),
+                       (struct comp **) mh_xcalloc((size_t) (ncomps + 1),
                        sizeof(struct comp *)))) {
                adios(EX_OSERR, NULL, "unable to allocate component buffer stack");
        }