mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_select: Fix traceback (thanks eta)
The `socket` here is unreferenced on disconnect. Calling :resume_writes after that causes an error when `addsocket()` tries to use it as a table index.
This commit is contained in:
parent
6c5dd70664
commit
33d00845e7
1 changed files with 1 additions and 1 deletions
|
@ -511,7 +511,7 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
|
|||
end
|
||||
handler.resume_writes = function (self)
|
||||
nosend = false
|
||||
if bufferlen > 0 then
|
||||
if bufferlen > 0 and socket then
|
||||
_sendlistlen = addsocket(_sendlist, socket, _sendlistlen)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue