mod_http_files: No use in closing a file handle if we couldn't open it

This commit is contained in:
Kim Alvefur 2012-12-21 08:10:07 +01:00
parent 17bfb654df
commit e104ed8cac

View file

@ -106,9 +106,11 @@ function serve_file(event, path)
end
else
local f = open(full_path, "rb");
data = f and f:read("*a");
f:close();
local f, err = open(full_path, "rb");
if f then
data = f:read("*a");
f:close();
end
if not data then
return 403;
end