We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On some Windows version (tested with WinXP SP-2), cURL fails with the following error, if writing output to the terminal:
curl: (23) Failure writing output to destination
(output to a file still works)
I have been able to track this error down to the tool_write_cb() function 😤
tool_write_cb()
Specifically, the invocation of WriteConsoleW() fails, with Win32 error code ERROR_INVALID_ACCESS.
WriteConsoleW()
ERROR_INVALID_ACCESS
Setting parameter lpNumberOfCharsWritten to a valid pointer fixed the problem for me.
Please see: #12130
This seems to be a regression from: af3f4e4
cURL should be able to write to the terminal.
cURL 8.4.0
Windows
The text was updated successfully, but these errors were encountered:
b1b7552
closed this as completed in b1b7552
👍
Sorry, something went wrong.
No branches or pull requests
I did this
On some Windows version (tested with WinXP SP-2), cURL fails with the following error, if writing output to the terminal:
(output to a file still works)
I have been able to track this error down to the
tool_write_cb()
function 😤Specifically, the invocation of
WriteConsoleW()
fails, with Win32 error codeERROR_INVALID_ACCESS
.Setting parameter lpNumberOfCharsWritten to a valid pointer fixed the problem for me.
Please see: #12130
This seems to be a regression from: af3f4e4
I expected the following
cURL should be able to write to the terminal.
curl/libcurl version
cURL 8.4.0
operating system
Windows
The text was updated successfully, but these errors were encountered: