mod_http_files: Don't prepend / to path twice, sanitize path does this already

This commit is contained in:
Kim Alvefur 2016-03-03 15:30:00 +01:00
parent cbe3f15ee4
commit e08144940d

View file

@ -95,7 +95,7 @@ function serve(opts)
end
path = sanitized_path;
local orig_path = sanitize_path(request.path);
local full_path = base_path .. (path and "/"..path or ""):gsub("/", path_sep);
local full_path = base_path .. (path or ""):gsub("/", path_sep);
local attr = stat(full_path:match("^.*[^\\/]")); -- Strip trailing path separator because Windows
if not attr then
return 404;