Add a useful assertion to the poller

This commit is contained in:
Přemysl Eric Janouch 2015-02-21 12:32:51 +01:00
parent b656415836
commit ccf6b1427f
1 changed files with 2 additions and 0 deletions

View File

@ -1212,6 +1212,8 @@ poller_run (struct poller *self)
continue;
struct poller_fd *fd = revents->data.ptr;
hard_assert (fd->index != -1);
struct pollfd pfd;
pfd.fd = fd->fd;
pfd.revents = poller_epoll_to_poll_events (revents->events);