X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhstore.c;h=fae054fa1461075beb4b4ea7b2a5b5e3b886ba03;hp=1202fcbac43b77f3115bad2399bbf2420feb9d66;hb=7a13a5266a14f1c6a13752db9292cd40c1211fba;hpb=6e27d395a60fe59a274edc47989b9b8127359f36 diff --git a/uip/mhstore.c b/uip/mhstore.c index 1202fcb..fae054f 100644 --- a/uip/mhstore.c +++ b/uip/mhstore.c @@ -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++) {