X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/6c42153ad9362cc676ea66563bf400d7511b3b68..a9d65cd81e8ca93af31086a136d1e3ade86ad8d2:/sbr/seq_list.c diff --git a/sbr/seq_list.c b/sbr/seq_list.c index 8a440691..f5dbb658 100644 --- a/sbr/seq_list.c +++ b/sbr/seq_list.c @@ -11,6 +11,7 @@ */ #include +#include /* allocate this much buffer space at a time */ #define MAXBUFFER 1024 @@ -29,8 +30,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 +75,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; }