X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhtest.c;h=dd456263796649b743a38adb305516bb6db5607c;hb=fc1b00d424f47972a8311b3706304258e111d8d4;hp=43fde0e265a919501720ccc41d302de1be78117d;hpb=e16d5bfc58d8b0dfe61701cd4d6b1732e837d60a;p=mmh 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++) {