-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
read from append write only file handle breaks the following writes #23026
Comments
Placing the OP's code sample into a file, I bisected with the following invocation:
The change of behavior ("first bad commit") was observed at
@tonycoz, can you take a look? Thanks. |
Calling read() would also set the error flag on the stream, and always has.
The change @jkeenan listed simply prevented readline() from clearing the error state after an error. |
Following up on this, thanks for the clarifications. So this is intended behaviour after all. I suppose this issue should be closed, then? I have submitted a patch to Win32::LongPath adding |
Description
Opening a file in append write only mode (
>>
) and attepting to read from it puts the file handle in some kind of invalid state. Following writes will have the intended effect, i.e. append bytes to the file, but return errors.This behaviour started with 5.38 and broke the tests in Win32::LongPath rdboisvert/Win32-LongPath#14.
cc @shawnlaffan
Steps to Reproduce
Expected behavior
The code should run successfully as it did before.
Note that using sysread and syswrite does not trigger the issue.
Perl configuration
Observed on multiple platforms (Linux, Windows, macOS), for instance:
The text was updated successfully, but these errors were encountered: