From: Jim Meyering Date: Fri, 19 Nov 2004 18:56:16 +0000 (+0000) Subject: (check_file): Don't check stdout for errors here. X-Git-Tag: v5.3.0~365 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d766e90d4cc924d0b0a3f94ce65205f499107742;p=thirdparty%2Fcoreutils.git (check_file): Don't check stdout for errors here. --- diff --git a/src/uniq.c b/src/uniq.c index 4ae509f030..b7339e5b75 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -387,12 +387,15 @@ check_file (const char *infile, const char *outfile) if (ferror (istream) || fclose (istream) == EOF) error (EXIT_FAILURE, errno, _("error reading %s"), infile); - if (ferror (ostream)) - error (EXIT_FAILURE, 0, _("error writing %s"), outfile); - /* Close ostream only if it's not stdout -- the latter is closed - via the atexit-invoked close_stdout. */ - if (ostream != stdout && fclose (ostream) != 0) - error (EXIT_FAILURE, errno, _("error writing %s"), outfile); + /* Check for errors and close ostream only if it's not stdout -- + stdout is handled via the atexit-invoked close_stdout function. */ + if (ostream != stdout) + { + if (ferror (ostream)) + error (EXIT_FAILURE, 0, _("error writing %s"), outfile); + if (ostream != stdout && fclose (ostream) != 0) + error (EXIT_FAILURE, errno, _("error writing %s"), outfile); + } free (lb1.buffer); free (lb2.buffer);