X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmark.c;h=03337229c679ed6360ba3990ed8ca209c6373f75;hp=e53b3d58b9e3403e25b83e8bb87dfb476017adf7;hb=008837e090c008e3afe7a9c8667070bafa091e62;hpb=017a82124bf2ea39ced5aa4c8f969c18b3c2fb90 diff --git a/uip/mark.c b/uip/mark.c index e53b3d5..0333722 100644 --- a/uip/mark.c +++ b/uip/mark.c @@ -5,9 +5,14 @@ * -- list sequences in given folder * * $Id$ + * + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include +#include /* * We allocate space for messages (msgs array) @@ -77,8 +82,7 @@ main (int argc, char **argv) */ nummsgs = 0; maxmsgs = MAXMSGS; - if (!(msgs = (char **) malloc ((size_t) (maxmsgs * sizeof(*msgs))))) - adios (NULL, "unable to allocate storage"); + msgs = (char **) mh_xmalloc ((size_t) (maxmsgs * sizeof(*msgs))); /* * Parse arguments @@ -155,9 +159,8 @@ main (int argc, char **argv) */ if (nummsgs >= maxmsgs) { maxmsgs += MAXMSGS; - if (!(msgs = (char **) realloc (msgs, - (size_t) (maxmsgs * sizeof(*msgs))))) - adios (NULL, "unable to reallocate msgs storage"); + msgs = (char **) mh_xrealloc (msgs, + (size_t) (maxmsgs * sizeof(*msgs))); } msgs[nummsgs++] = cp; }