summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-10-08 19:37:33 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-10-08 19:37:33 (GMT)
commitc6f9b2b7f5f3640ce8aeac4aff67f75821891d81 (patch)
tree4ea6927932eabc220c9781081806b10d80743d3a /Modules
parentea200dba822736a0ad717c34fb14fcb3441bff82 (diff)
downloadcpython-c6f9b2b7f5f3640ce8aeac4aff67f75821891d81.zip
cpython-c6f9b2b7f5f3640ce8aeac4aff67f75821891d81.tar.gz
cpython-c6f9b2b7f5f3640ce8aeac4aff67f75821891d81.tar.bz2
Issue #28162: Fixes Ctrl+Z handling in console readall()
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_io/winconsoleio.c49
1 files changed, 29 insertions, 20 deletions
diff --git a/Modules/_io/winconsoleio.c b/Modules/_io/winconsoleio.c
index ee7a1b2..4666a38 100644
--- a/Modules/_io/winconsoleio.c
+++ b/Modules/_io/winconsoleio.c
@@ -816,44 +816,53 @@ _io__WindowsConsoleIO_readall_impl(winconsoleio *self)
PyMem_Free(subbuf);
- /* when the read starts with ^Z or is empty we break */
- if (n == 0 || buf[len] == '\x1a')
+ /* when the read is empty we break */
+ if (n == 0)
break;
len += n;
}
- if (len == 0 || buf[0] == '\x1a' && _buflen(self) == 0) {
+ if (len == 0 && _buflen(self) == 0) {
/* when the result starts with ^Z we return an empty buffer */
PyMem_Free(buf);
return PyBytes_FromStringAndSize(NULL, 0);
}
- Py_BEGIN_ALLOW_THREADS
- bytes_size = WideCharToMultiByte(CP_UTF8, 0, buf, len,
- NULL, 0, NULL, NULL);
- Py_END_ALLOW_THREADS
+ if (len) {
+ Py_BEGIN_ALLOW_THREADS
+ bytes_size = WideCharToMultiByte(CP_UTF8, 0, buf, len,
+ NULL, 0, NULL, NULL);
+ Py_END_ALLOW_THREADS
- if (!bytes_size) {
- DWORD err = GetLastError();
- PyMem_Free(buf);
- return PyErr_SetFromWindowsErr(err);
+ if (!bytes_size) {
+ DWORD err = GetLastError();
+ PyMem_Free(buf);
+ return PyErr_SetFromWindowsErr(err);
+ }
+ } else {
+ bytes_size = 0;
}
bytes_size += _buflen(self);
bytes = PyBytes_FromStringAndSize(NULL, bytes_size);
rn = _copyfrombuf(self, PyBytes_AS_STRING(bytes), bytes_size);
- Py_BEGIN_ALLOW_THREADS
- bytes_size = WideCharToMultiByte(CP_UTF8, 0, buf, len,
- &PyBytes_AS_STRING(bytes)[rn], bytes_size - rn, NULL, NULL);
- Py_END_ALLOW_THREADS
+ if (len) {
+ Py_BEGIN_ALLOW_THREADS
+ bytes_size = WideCharToMultiByte(CP_UTF8, 0, buf, len,
+ &PyBytes_AS_STRING(bytes)[rn], bytes_size - rn, NULL, NULL);
+ Py_END_ALLOW_THREADS
- if (!bytes_size) {
- DWORD err = GetLastError();
- PyMem_Free(buf);
- Py_CLEAR(bytes);
- return PyErr_SetFromWindowsErr(err);
+ if (!bytes_size) {
+ DWORD err = GetLastError();
+ PyMem_Free(buf);
+ Py_CLEAR(bytes);
+ return PyErr_SetFromWindowsErr(err);
+ }
+
+ /* add back the number of preserved bytes */
+ bytes_size += rn;
}
PyMem_Free(buf);