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:
Kim Alvefur 2023-11-23 17:49:57 +01:00
parent 37ba63f50b
commit 58988fbce5

View file

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