mod_bosh: Remove requests from the session table using table.remove(), prevents the possibility of holes in the array.

This commit is contained in:
Matthew Wild 2010-05-17 11:42:53 +01:00
parent c43b31011f
commit a36bf4db9b

View file

@ -47,8 +47,11 @@ function on_destroy_request(request)
local session = sessions[request.sid];
if session then
local requests = session.requests;
for i,r in pairs(requests) do
if r == request then requests[i] = nil; break; end
for i,r in ipairs(requests) do
if r == request then
t_remove(requests, i);
break;
end
end
-- If this session now has no requests open, mark it as inactive