mirror of https://github.com/python/cpython
Merged revisions 65385 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r65385 | benjamin.peterson | 2008-08-01 22:11:16 -0500 (Fri, 01 Aug 2008) | 1 line fix compile error on Windows ........
This commit is contained in:
parent
8dfcdda840
commit
7d5dd8af9b
|
@ -68,7 +68,7 @@ conn_recv_string(ConnectionObject *conn, char *buffer,
|
|||
memcpy(*newbuffer, buffer, length);
|
||||
|
||||
Py_BEGIN_ALLOW_THREADS
|
||||
ret = ReadFile(conn->handle, *newbuffer+length, left, &length, NULL)
|
||||
ret = ReadFile(conn->handle, *newbuffer+length, left, &length, NULL);
|
||||
Py_END_ALLOW_THREADS
|
||||
if (ret) {
|
||||
assert(length == left);
|
||||
|
|
Loading…
Reference in New Issue