Skip to content

Commit 5778aa9

Browse files
Prevent poll service failure with WSAENOTSOCK on Windows
1 parent 57e06d8 commit 5778aa9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/impl/pollservice.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,13 @@ void PollService::runLoop() {
189189

190190
} while (ret < 0 && (sockerrno == SEINTR || sockerrno == SEAGAIN));
191191

192+
if (ret < 0) {
192193
#ifdef _WIN32
193-
if (ret == WSAENOTSOCK)
194-
continue; // prepare again as the fd has been removed
194+
if (sockerrno == WSAENOTSOCK)
195+
continue; // prepare again as the fd has been removed
195196
#endif
196-
if (ret < 0)
197197
throw std::runtime_error("poll failed, errno=" + std::to_string(sockerrno));
198+
}
198199

199200
process(pfds);
200201
}

0 commit comments

Comments
 (0)