]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/gsocket.cpp
Cleanup
[wxWidgets.git] / src / msw / gsocket.cpp
index 1fcf0afa6d0a2f349c1830f9bf374e2cf0728682..ac350bc4ce9a2d8402a7cf2e6e59413b6ce07707 100644 (file)
@@ -726,7 +726,10 @@ int GSocket::Read(char *buffer, int size)
 
   /* If the socket is blocking, wait for data (with a timeout) */
   if (Input_Timeout() == GSOCK_TIMEDOUT)
+  {
+    m_error = GSOCK_TIMEDOUT;
     return -1;
+  }
 
   /* Read the data */
   if (m_stream)