X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhlist.c;h=9022ecfa170e46347b71fccaf7d9ab6decd5ac28;hp=c4682b4adc93b594924c2d89989321d356b514be;hb=72795bfcbe9f7fee8927b1a4942c0230b0f857a8;hpb=5086954856e7b078981418d4aac233d37deb72bd diff --git a/uip/mhlist.c b/uip/mhlist.c index c4682b4..9022ecf 100644 --- a/uip/mhlist.c +++ b/uip/mhlist.c @@ -197,7 +197,7 @@ main(int argc, char **argv) ** check if message is coming from file */ if (file) { - if (!(cts = (CT *) calloc((size_t) 2, sizeof(*cts)))) + if (!(cts = (CT *) mh_xcalloc((size_t) 2, sizeof(*cts)))) adios(EX_OSERR, NULL, "out of memory"); ctp = cts; @@ -232,7 +232,7 @@ main(int argc, char **argv) } seq_setprev(mp); /* set the previous-sequence */ - if (!(cts = (CT *) calloc((size_t) (mp->numsel + 1), + if (!(cts = (CT *) mh_xcalloc((size_t) (mp->numsel + 1), sizeof(*cts)))) adios(EX_OSERR, NULL, "out of memory"); ctp = cts;