X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhpath.c;h=4a88605b8434025da8134453aec4f3766cea48a8;hp=ac1854e4e803fcfde0e35e92277a02d4534a4759;hb=5ff96d61ee5af34956ae958a0bc72ee78734a4d7;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b diff --git a/uip/mhpath.c b/uip/mhpath.c index ac1854e..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; } @@ -144,5 +147,5 @@ main(int argc, char **argv) seq_save (mp); /* synchronize message sequences */ context_save (); /* save the context file */ folder_free (mp); /* free folder/message structure */ - done (0); + return done (0); }