Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.6, 10.7(EOL)
-
None
Description
in threadpool_winsockets.cc
/* Do async read (named pipe) */ |
if (ReadFile(m_handle, buf.buf, buf.len, 0, &m_overlapped)) |
err= GetLastError();
|
That should be "if (!ReadFile...)". ReadFile returns TRUE on success, FALSE on error