mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: No use in closing a file handle if we couldn't open it
This commit is contained in:
parent
17bfb654df
commit
e104ed8cac
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue