From a337c51456fc8a068a7af5373371f8b736c4e51c Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sat, 24 May 2003 18:21:44 +0300 Subject: [PATCH] fix --HG-- branch : HEAD --- src/lib/ioloop-poll.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/ioloop-poll.c b/src/lib/ioloop-poll.c index b02885ee86..3ef56b0971 100644 --- a/src/lib/ioloop-poll.c +++ b/src/lib/ioloop-poll.c @@ -204,6 +204,8 @@ void io_loop_handler_run(struct ioloop *ioloop) } else if (io->condition & IO_WRITE) { call = (pollfd->revents & IO_POLL_OUTPUT) != 0; pollfd->revents &= ~IO_POLL_OUTPUT; + } else { + call = FALSE; } if (call) { -- 2.47.3