summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-11-06 22:37:23 +0000
committerJim Meyering <jim@meyering.net>2004-11-06 22:37:23 +0000
commitd77d7fe158bea73dc309cbbce2dbe6add4da3327 (patch)
treedf01f7d04fa361da1857f4ecdb79361319dadcaf
parentd73a00981c48bb84ec3ed678ab2cae52a13d34f8 (diff)
downloadcoreutils-d77d7fe158bea73dc309cbbce2dbe6add4da3327.tar.xz
Ensure that no close failure goes unreported.
(close_stdout): Always close stdout. I.e., don't return early when it seems there's nothing to flush. Don't include __fpending.h.
-rw-r--r--lib/closeout.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/lib/closeout.c b/lib/closeout.c
index 16e6f9f67..b0eed90ea 100644
--- a/lib/closeout.c
+++ b/lib/closeout.c
@@ -32,7 +32,6 @@
#include "error.h"
#include "exitfail.h"
#include "quotearg.h"
-#include "__fpending.h"
#if USE_UNLOCKED_IO
# include "unlocked-io.h"
@@ -49,7 +48,7 @@ close_stdout_set_file_name (const char *file)
}
/* Close standard output, exiting with status 'exit_failure' on failure.
- If a program writes *anything* to stdout, that program should `fflush'
+ If a program writes *anything* to stdout, that program should close
stdout and make sure that it succeeds before exiting. Otherwise,
suppose that you go to the extreme of checking the return status
of every function that does an explicit write to stdout. The last
@@ -57,11 +56,9 @@ close_stdout_set_file_name (const char *file)
the fclose(stdout) could still fail (due e.g., to a disk full error)
when it tries to write out that buffered data. Thus, you would be
left with an incomplete output file and the offending program would
- exit successfully.
-
- FIXME: note the fflush suggested above is implicit in the fclose
- we actually do below. Consider doing only the fflush and/or using
- setvbuf to inhibit buffering.
+ exit successfully. Even calling fflush is not always sufficient,
+ since some file systems (NFS and CODA) buffer written/flushed data
+ until an actual close call.
Besides, it's wasteful to check the return value from every call
that writes to stdout -- just let the internal stream state record
@@ -76,11 +73,6 @@ close_stdout (void)
{
int e = ferror (stdout) ? 0 : -1;
- /* If the stream's error bit is clear and there is nothing to flush,
- then return right away. */
- if (e && __fpending (stdout) == 0)
- return;
-
if (fclose (stdout) != 0)
e = errno;