From 8b6882e5e94ae1c4d6dfd5e8d3cba0e9bafa5bfd Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 8 Aug 2000 07:09:31 +0000 Subject: (cut_fields): Invoke xalloc_die instead of printing our own message. (cut_fields): Check for I/O error as well as end-of-file. --- src/cut.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/cut.c b/src/cut.c index 45199c125..2c298ec71 100644 --- a/src/cut.c +++ b/src/cut.c @@ -478,9 +478,9 @@ cut_fields (FILE *stream) delim, '\n', 0); if (len < 0) { - if (feof (stream)) + if (ferror (stream) || feof (stream)) break; - FATAL_ERROR (_("virtual memory exhausted")); + xalloc_die (); } assert (len != 0); -- cgit v1.2.3-70-g09d2