X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmsh.c;h=df64de52fbe6361c267fbe9d43318c41eb99b632;hp=2eda3b23581886deb8086855feaaa2a2cf631f7d;hb=1bb1f6c3f38b05060bf699ea2743f7386889bf63;hpb=dee387b53ab0d42922f857b60d6f980c9e79d16f diff --git a/uip/msh.c b/uip/msh.c index 2eda3b2..df64de5 100644 --- a/uip/msh.c +++ b/uip/msh.c @@ -3,6 +3,10 @@ * msh.c -- The nmh shell * * $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. */ /* @@ -18,6 +22,7 @@ #include #include #include +#include #ifdef HAVE_TERMIOS_H # include @@ -937,9 +942,7 @@ m_gMsgs (int n) return; nmsgs = nMsgs + n + MAXFOLDER / 2; - Msgs = (struct Msg *) realloc ((char *) Msgs, (size_t) (nmsgs + 2) * sizeof *Msgs); - if (Msgs == NULL) - padios (NULL, "unable to reallocate Msgs structure"); + Msgs = (struct Msg *) mh_xrealloc ((char *) Msgs, (size_t) (nmsgs + 2) * sizeof *Msgs); memset((char *) (Msgs + nMsgs + 2), 0, (size_t) ((nmsgs - nMsgs) * sizeof *Msgs)); nMsgs = nmsgs;