diff options
author | Rich Felker <dalias@aerifal.cx> | 2023-03-20 19:07:54 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2023-03-21 09:11:17 -0400 |
commit | 3a051769c4a91c3a7d1f1310d888faa4abf363e7 (patch) | |
tree | 440dfaaaca3c36ade1b998a7585863850358be97 /src/stdio/putc.c | |
parent | 0440ed69eac766c712e974358c3e09d63e330f40 (diff) | |
download | musl-3a051769c4a91c3a7d1f1310d888faa4abf363e7.tar.gz musl-3a051769c4a91c3a7d1f1310d888faa4abf363e7.tar.xz musl-3a051769c4a91c3a7d1f1310d888faa4abf363e7.zip |
fix (normal, narrow) printf erroneously processing %n after output errors
unlike with wide printf variants, encoding errors are not a vector by which this bug is reachable, and the out() helper function already ensured that no further output could be written after an output error, transient or otherwise. however, the %n specifier could still be processed after an error, yielding a side effect that wrongly implied output had succeeded. due to buffering effects, it's still possible for %n to show output as having "succeeded", but for it never to appear on the underlying file due to an error at flush time. this change, however, ensures that processing of %n does not conflict with any error which has already been seen.
Diffstat (limited to 'src/stdio/putc.c')
0 files changed, 0 insertions, 0 deletions