Fix a memory leak when the connection is dropped by the client side
This commit is contained in:
@@ -153,6 +153,12 @@ return function (port)
|
||||
|
||||
connection:on("receive", onReceive)
|
||||
connection:on("sent", onSent)
|
||||
connection:on("disconnection",function(c)
|
||||
if connectionThread then
|
||||
connectionThread = nil
|
||||
collectgarbage()
|
||||
end
|
||||
end)
|
||||
|
||||
end
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user