git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58233
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool wxEpollDispatcher::HasPending() const
{
epoll_event event;
bool wxEpollDispatcher::HasPending() const
{
epoll_event event;
+
+ // NB: it's not really clear if epoll_wait() can return a number greater
+ // than the number of events passed to it but just in case it can, use
+ // >= instead of == here, see #10397
return DoPoll(&event, 1, 0) >= 1;
}
return DoPoll(&event, 1, 0) >= 1;
}