r1288 merge:

fix segfault when event port returns POLLERR without POLLIN or POLLOUT
This commit is contained in:
Igor Sysoev 2007-07-13 10:45:33 +00:00
parent 284cc40ce0
commit 30b1af6235

View File

@ -514,6 +514,10 @@ ngx_eventport_process_events(ngx_cycle_t *cycle, ngx_msec_t timer,
} else {
rev->handler(rev);
if (ev->closed) {
continue;
}
}
if (rev->accept) {