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