mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Make sure socket exists before checking if there is buffered data in it
This commit is contained in:
parent
484a67129d
commit
78fdfac11b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue