X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhtest.c;h=dd456263796649b743a38adb305516bb6db5607c;hp=43fde0e265a919501720ccc41d302de1be78117d;hb=6e7d34c614291079de750ceda1d4f5ec537beb81;hpb=056af7546464661f792d85308f119bf6c1554316 diff --git a/uip/mhtest.c b/uip/mhtest.c index 43fde0e..dd45626 100644 --- a/uip/mhtest.c +++ b/uip/mhtest.c @@ -209,8 +209,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))) @@ -242,9 +241,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++) {