mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal: Close archive list after completion of iteration
This closes the two FDs that the random access list abstraction uses, otherwise they are left to the garbage collector.
This commit is contained in:
parent
37ba63f50b
commit
58988fbce5
1 changed files with 1 additions and 0 deletions
|
@ -258,6 +258,7 @@ function archive:find(username, query)
|
|||
return function()
|
||||
local item = iter();
|
||||
if item == nil then
|
||||
list:close();
|
||||
return
|
||||
end
|
||||
local key = item.key;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue