Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 10.6, 10.7
-
Fix Version/s: 10.6.5
-
Component/s: Platform Windows, Server
-
Labels: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