X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhpath.c;h=4a88605b8434025da8134453aec4f3766cea48a8;hb=ac33b2e9c3632537b93fc4755a925c682d1eb82e;hp=918371a954f4cd3bb792f4d5da5038ae5f45ed14;hpb=3c9700d8d045f3ff26ce5dd2a174454dafc14822;p=mmh diff --git a/uip/mhpath.c b/uip/mhpath.c index 918371a..4a88605 100644 --- a/uip/mhpath.c +++ b/uip/mhpath.c @@ -3,15 +3,20 @@ * mhpath.c -- print full pathnames of nmh messages and folders * * $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 static struct swit switches[] = { #define VERSIONSW 0 { "version", 0 }, #define HELPSW 1 - { "help", 4 }, + { "help", 0 }, { NULL, 0 } }; @@ -48,8 +53,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 @@ -85,9 +89,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; }