X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/81a21a9a97d8633f6d6231e31fdb6e328d0d3ff2..814636fe9919b8c365bfa19479f6f9a79ad87ed5:/sbr/seq_list.c diff --git a/sbr/seq_list.c b/sbr/seq_list.c index ecc03bfd..f5dbb658 100644 --- a/sbr/seq_list.c +++ b/sbr/seq_list.c @@ -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; }