This commit is contained in:
Chris Lu 2018-07-27 02:10:42 -07:00
parent 4d322df95e
commit 10bb76fe6b
3 changed files with 6 additions and 6 deletions

View file

@ -109,7 +109,7 @@ func reverseWalkIndexFile(r *os.File, initFn func(entryCount int64), fn func(key
return e return e
} }
for i := int(nextBatchSize) - 1; i >= 0; i-- { for i := int(nextBatchSize) - 1; i >= 0; i-- {
key, offset, size := IdxFileEntry(bytes[i*NeedleEntrySize:i*NeedleEntrySize+NeedleEntrySize]) key, offset, size := IdxFileEntry(bytes[i*NeedleEntrySize : i*NeedleEntrySize+NeedleEntrySize])
if e = fn(key, offset, size); e != nil { if e = fn(key, offset, size); e != nil {
return e return e
} }

View file

@ -7,8 +7,8 @@ import (
"mime" "mime"
"net/http" "net/http"
"path" "path"
"strings"
"strconv" "strconv"
"strings"
) )
func parseMultipart(r *http.Request) ( func parseMultipart(r *http.Request) (