]> granicus.if.org Git - python/commitdiff
bpo-30544: _io._WindowsConsoleIO.write raises the wrong error when WriteConsoleW...
authorSteve Dower <steve.dower@microsoft.com>
Fri, 2 Jun 2017 21:39:05 +0000 (14:39 -0700)
committerGitHub <noreply@github.com>
Fri, 2 Jun 2017 21:39:05 +0000 (14:39 -0700)
* bpo-30544: _io._WindowsConsoleIO.write raises the wrong error when WriteConsoleW fails

* bpo-30544: _io._WindowsConsoleIO.write raises the wrong error when WriteConsoleW fails

Modules/_io/winconsoleio.c

index 1d169e2764ed27088f9e187620e065f9a4ae365c..cbe21422bb4653d8a73f18ae57e510876051a80f 100644 (file)
@@ -1017,7 +1017,7 @@ _io__WindowsConsoleIO_write_impl(winconsoleio *self, Py_buffer *b)
     wlen = MultiByteToWideChar(CP_UTF8, 0, b->buf, len, wbuf, wlen);
     if (wlen) {
         res = WriteConsoleW(self->handle, wbuf, wlen, &n, NULL);
-        if (n < wlen) {
+        if (res && n < wlen) {
             /* Wrote fewer characters than expected, which means our
              * len value may be wrong. So recalculate it from the
              * characters that were written. As this could potentially