handle closed hting better

This commit is contained in:
Adam D. Ruppe 2020-02-01 19:47:49 -05:00
parent c76d26f01f
commit cfcffbfca9
1 changed files with 5 additions and 1 deletions

View File

@ -3186,7 +3186,11 @@ struct EventLoopImpl {
SimpleWindow.processAllCustomEvents();
} else {
auto obj = PosixFdReader.mapping[pfds[s].fd];
obj.ready(pfds[s].revents);
if(pfds[s].revents & POLLNVAL) {
obj.dispose();
} else {
obj.ready(pfds[s].revents);
}
}
ret--;