4519. [port] win32: handle ERROR_MORE_DATA. [RT #43534]

This commit is contained in:
Mark Andrews
2016-11-29 11:28:26 +11:00
parent c8b6065dde
commit a611e44f9a
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
4519. [port] win32: handle ERROR_MORE_DATA. [RT #43534]
4518. [func] The "print-time" option in the logging configuration
can now take arguments "local", "iso8601" or
"iso8601-utc" to indicate the format in which the

View File

@@ -2515,14 +2515,16 @@ SocketIoThread(LPVOID ThreadContext) {
request = lpo->request_type;
errstatus = 0;
if (!bSuccess) {
if (!bSuccess)
errstatus = GetLastError();
else
errstatus = 0;
if (!bSuccess && errstatus != ERROR_MORE_DATA) {
isc_result_t isc_result;
/*
* Did the I/O operation complete?
*/
errstatus = GetLastError();
isc_result = isc__errno2result(errstatus);
LOCK(&sock->lock);