Added mh_xcalloc().
[mmh] / uip / mhstore.c
index 4234d25..2a0ddf9 100644 (file)
@@ -261,7 +261,7 @@ main(int argc, char **argv)
        ** check if message is coming from file
        */
        if (file) {
-               if (!(cts = (CT *) calloc((size_t) 2, sizeof(*cts))))
+               if (!(cts = (CT *) mh_xcalloc((size_t) 2, sizeof(*cts))))
                        adios(EX_OSERR, NULL, "out of memory");
                ctp = cts;
 
@@ -294,7 +294,7 @@ main(int argc, char **argv)
                                exit(EX_USAGE);
                seq_setprev(mp);  /* set the previous-sequence */
 
-               if (!(cts = (CT *) calloc((size_t) (mp->numsel + 1),
+               if (!(cts = (CT *) mh_xcalloc((size_t) (mp->numsel + 1),
                                sizeof(*cts))))
                        adios(EX_OSERR, NULL, "out of memory");
                ctp = cts;