net.server_epoll: Make sure socket exists before checking if there is buffered data in it

This commit is contained in:
Kim Alvefur 2016-10-27 23:19:30 +02:00
parent 484a67129d
commit 78fdfac11b

View file

@ -526,7 +526,7 @@ function interface:pausefor(t)
self:setflags(false);
self._pausefor = addtimer(t, function ()
self._pausefor = nil;
if self.conn:dirty() then
if self.conn and self.conn:dirty() then
self:onreadable();
end
self:setflags(true);