From: Benjamin Peterson Date: Sat, 2 Aug 2008 03:17:02 +0000 (+0000) Subject: Merged revisions 65385 via svnmerge from X-Git-Tag: v3.0b3~187 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d5dd8af9b159fb2688ae5ca02905203165bd41e;p=python 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 ........ --- diff --git a/Modules/_multiprocessing/pipe_connection.c b/Modules/_multiprocessing/pipe_connection.c index d655c50aa4..ad16fc89d3 100644 --- a/Modules/_multiprocessing/pipe_connection.c +++ b/Modules/_multiprocessing/pipe_connection.c @@ -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);