mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
4519. [port] win32: handle ERROR_MORE_DATA. [RT #43534]
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user