event/TimeoutMonitor: really reset "active" flag before invoking OnTimeout()

The previous commit was broken.  D'oh!
This commit is contained in:
Max Kellermann 2014-08-24 13:19:50 +02:00
parent d16fb79708
commit f06fe1ea98
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ void
TimeoutMonitor::Run()
{
#ifdef USE_EPOLL
active = true;
active = false;
#else
Cancel();
#endif