🐞 panic in fs.go #824 (#825)

Co-authored-by: wernerr <rene.werner@verivox.com>
This commit is contained in:
RW
2020-06-04 16:53:47 +02:00
committed by GitHub
parent 33b3cb259e
commit 853abb31af
+2 -2
View File
@@ -84,7 +84,7 @@ func ServeFile(ctx *RequestCtx, path string) {
})
if len(path) == 0 || path[0] != '/' {
// extend relative path to absolute path
hasTrailingSlash := path[len(path) - 1] == '/'
hasTrailingSlash := len(path) > 0 && path[len(path)-1] == '/'
var err error
if path, err = filepath.Abs(path); err != nil {
ctx.Logger().Printf("cannot resolve path %q to absolute file path: %s", path, err)
@@ -688,7 +688,7 @@ func (h *fsHandler) handleRequest(ctx *RequestCtx) {
} else {
path = ctx.Path()
}
hasTrailingSlash := path[len(path) - 1] == '/'
hasTrailingSlash := len(path) > 0 && path[len(path)-1] == '/'
path = stripTrailingSlashes(path)
if n := bytes.IndexByte(path, 0); n >= 0 {