X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhlist.c;h=460901281f3cbe59c22a4c5e7ebe43c70372cd28;hp=9022ecfa170e46347b71fccaf7d9ab6decd5ac28;hb=b78007de9802005825390bee71dfce2306b42519;hpb=72795bfcbe9f7fee8927b1a4942c0230b0f857a8 diff --git a/uip/mhlist.c b/uip/mhlist.c index 9022ecf..4609012 100644 --- a/uip/mhlist.c +++ b/uip/mhlist.c @@ -197,8 +197,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 = mh_xcalloc(2, sizeof(*cts)); ctp = cts; if ((ct = parse_mime(file))) @@ -232,9 +231,7 @@ main(int argc, char **argv) } 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 = mh_xcalloc(mp->numsel + 1, sizeof(*cts)); ctp = cts; for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {