X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fseq_list.c;h=b64e8cd8d03d4363e8fcccb186d1fc2f6a6ca88b;hb=6c40d481d661d532dd527eaf34cebb6d3f8ed086;hp=8a440691a417eaca0eea716d1c569d92b9a430c4;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/sbr/seq_list.c b/sbr/seq_list.c index 8a44069..b64e8cd 100644 --- a/sbr/seq_list.c +++ b/sbr/seq_list.c @@ -3,14 +3,13 @@ * seq_list.c -- Get all messages in a sequence and return them * -- as a space separated list of message ranges. * - * $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 /* allocate this much buffer space at a time */ #define MAXBUFFER 1024 @@ -29,8 +28,7 @@ seq_list(struct msgs *mp, char *seqname) /* On first invocation, allocate initial buffer space */ if (!buffer) { len = MAXBUFFER; - if (!(buffer = malloc ((size_t) len))) - adios (NULL, "unable to malloc storage in seq_list"); + buffer = mh_xmalloc ((size_t) len); } /* @@ -75,8 +73,7 @@ seq_list(struct msgs *mp, char *seqname) char *newbuf; len += MAXBUFFER; - if (!(newbuf = realloc (buffer, (size_t) len))) - adios (NULL, "unable to realloc storage in seq_list"); + newbuf = mh_xrealloc (buffer, (size_t) len); bp = newbuf + (bp - buffer); buffer = newbuf; }