No error-checking for error-checking alloc functions
[mmh] / uip / mhstore.c
index 1202fcb..fae054f 100644 (file)
@@ -261,8 +261,7 @@ main(int argc, char **argv)
        ** check if message is coming from file
        */
        if (file) {
-               if (!(cts = (CT *) mh_xcalloc((size_t) 2, sizeof(*cts))))
-                       adios(EX_OSERR, NULL, "out of memory");
+               cts = (CT *) mh_xcalloc((size_t) 2, sizeof(*cts));
                ctp = cts;
 
                if ((ct = parse_mime(file)))
@@ -294,9 +293,8 @@ main(int argc, char **argv)
                                exit(EX_USAGE);
                seq_setprev(mp);  /* set the previous-sequence */
 
-               if (!(cts = (CT *) mh_xcalloc((size_t) (mp->numsel + 1),
-                               sizeof(*cts))))
-                       adios(EX_OSERR, NULL, "out of memory");
+               cts = (CT *) mh_xcalloc((size_t) (mp->numsel + 1),
+                               sizeof(*cts));
                ctp = cts;
 
                for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
@@ -570,8 +568,7 @@ store_partial(CT ct)
                return NOTOK;
        }
 
-       if ((base = (CT *) mh_xcalloc((size_t) (i + 1), sizeof(*base))) == NULL)
-               adios(EX_OSERR, NULL, "out of memory");
+       base = (CT *) mh_xcalloc((size_t) (i + 1), sizeof(*base));
 
        ctq = base;
        for (ctp = cts; *ctp; ctp++) {