correctly handle write errors encountered by printf-family functions
authorRich Felker <dalias@aerifal.cx>
Wed, 17 Dec 2014 08:08:53 +0000 (03:08 -0500)
committerRich Felker <dalias@aerifal.cx>
Wed, 17 Dec 2014 08:08:53 +0000 (03:08 -0500)
commitd42269d7c85308abdbf8cee38b1a1097249eb38b
tree049cb8ff518affdb27c1e767b993081a0cd96536
parentda16224fc5fea45b307d9f0565c2adc92f9e1da0
correctly handle write errors encountered by printf-family functions

previously, write errors neither stopped further output attempts nor
caused the function to return an error to the caller. this could
result in silent loss of output, possibly in the middle of output in
the event of a non-permanent error.

the simplest solution is temporarily clearing the error flag for the
target stream, then suppressing further output when the error flag is
set and checking/restoring it at the end of the operation to determine
the correct return value.

since the wide version of the code internally calls the narrow fprintf
to perform some of its underlying operations, initial clearing of the
error flag is suppressed when performing a narrow vfprintf on a
wide-oriented stream. this is not a problem since the behavior of
narrow operations on wide-oriented streams is undefined.
src/stdio/vfprintf.c
src/stdio/vfwprintf.c