Merge pull request #50 from TriAnMan/fix-memory-leak

Fix a memory leak when the connection is dropped by the client side
This commit is contained in:
Marcos 2016-02-15 09:10:44 -06:00
commit c218c4f5a8

View File

@ -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
)