X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhshow.c;h=f48fa9939862db912e56f5a8ffadc31391013ece;hp=9ae5bf0feef59fbe8308db949b7612fe7db6696d;hb=196ab2784742130c5863aab2eeb7f8a1194b1b96;hpb=cf1205b5cbea2f0cd6ea710ec16c637df85b647c diff --git a/uip/mhshow.c b/uip/mhshow.c index 9ae5bf0..f48fa99 100644 --- a/uip/mhshow.c +++ b/uip/mhshow.c @@ -249,7 +249,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; @@ -304,7 +304,7 @@ main(int argc, char **argv) seq_setprev(mp); /* set the Previous-Sequence */ seq_setunseen(mp, 0); /* unset unseen seqs for shown msgs */ - 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;