From 6228ff86bd4ea7960bdae003cbe838a3e2d299a8 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 4 Nov 2003 10:27:24 +0000 Subject: [PATCH] (fold_file): Use x2nrealloc rather than xrealloc. --- src/fold.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/fold.c b/src/fold.c index 5be82db..e8a2f81 100644 --- a/src/fold.c +++ b/src/fold.c @@ -145,10 +145,7 @@ fold_file (char *filename, int width) while ((c = getc (istream)) != EOF) { if (offset_out + 1 >= allocated_out) - { - allocated_out += 1024; - line_out = xrealloc (line_out, allocated_out); - } + line_out = x2nrealloc (line_out, &allocated_out, sizeof *line_out); if (c == '\n') { -- 2.7.4