Commit c32ec9ac authored by Steve Dower's avatar Steve Dower

Issue #28333: Fixes off-by-one error that was adding an extra space.

parent fee07f24
...@@ -225,7 +225,8 @@ PyOS_StdioReadline(FILE *sys_stdin, FILE *sys_stdout, const char *prompt) ...@@ -225,7 +225,8 @@ PyOS_StdioReadline(FILE *sys_stdin, FILE *sys_stdout, const char *prompt)
if (wlen) { if (wlen) {
DWORD n; DWORD n;
fflush(stderr); fflush(stderr);
WriteConsoleW(hStdErr, wbuf, wlen, &n, NULL); /* wlen includes null terminator, so subtract 1 */
WriteConsoleW(hStdErr, wbuf, wlen - 1, &n, NULL);
} }
PyMem_RawFree(wbuf); PyMem_RawFree(wbuf);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment