aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-11-22 15:28:24 +0100
committerKim Alvefur <zash@zash.se>2016-11-22 15:28:24 +0100
commitf91ba70e322e1ec1fcd42dfc0189fb9b80939034 (patch)
treec9948fa867685eb88382d3b5ff27fed844dcae53
parent9cffff30d2d60a038ffc9e86285cad6c6c32df93 (diff)
downloadprosody-f91ba70e322e1ec1fcd42dfc0189fb9b80939034.tar.gz
prosody-f91ba70e322e1ec1fcd42dfc0189fb9b80939034.zip
net.server_select: Prevent writes after a handler is closed (fixes #783 I hope)
-rw-r--r--net/server_select.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/server_select.lua b/net/server_select.lua
index c50a6ce1..39640a83 100644
--- a/net/server_select.lua
+++ b/net/server_select.lua
@@ -415,6 +415,7 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
end
handler.port = handler.clientport -- COMPAT server_event
local write = function( self, data )
+ if not handler then return false end
bufferlen = bufferlen + #data
if bufferlen > maxsendlen then
_closelist[ handler ] = "send buffer exceeded" -- cannot close the client at the moment, have to wait to the end of the cycle