diff options
author | Kim Alvefur <zash@zash.se> | 2015-05-15 15:17:27 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-05-15 15:17:27 +0200 |
commit | 09475a58627185035bc27fa64af04ca968b293cd (patch) | |
tree | c51760a9e44f5ea6cfe68b031091cd4b6a712b29 | |
parent | 7875c914d3cc4b533b058c9f78354cf6e0bb4192 (diff) | |
download | prosody-09475a58627185035bc27fa64af04ca968b293cd.tar.gz prosody-09475a58627185035bc27fa64af04ca968b293cd.zip |
mod_storage_xep0227: Close file handle after reading
-rw-r--r-- | plugins/mod_storage_xep0227.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_storage_xep0227.lua b/plugins/mod_storage_xep0227.lua index ebecad04..b41fc6ce 100644 --- a/plugins/mod_storage_xep0227.lua +++ b/plugins/mod_storage_xep0227.lua @@ -17,6 +17,7 @@ local function getXml(user, host) local f = io_open(path); if not f then return; end local s = f:read("*a"); + f:close(); return parse_xml_real(s); end local function setXml(user, host, xml) |