# HG changeset patch # User Kim Alvefur # Date 1700758197 -3600 # Node ID 92b7ccc76c3a20d225f1511235335d3ca9c9f9be # Parent c94989c557cd98c45153ab992c5199324d9bb9d6 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. diff -r c94989c557cd -r 92b7ccc76c3a plugins/mod_storage_internal.lua --- a/plugins/mod_storage_internal.lua Wed Nov 22 22:35:44 2023 +0100 +++ b/plugins/mod_storage_internal.lua Thu Nov 23 17:49:57 2023 +0100 @@ -258,6 +258,7 @@ return function() local item = iter(); if item == nil then + list:close(); return end local key = item.key;