gorond
This commit is contained in:
parent
434a63575f
commit
f009e1d583
|
@ -56,7 +56,7 @@ func (me fileHandle) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse
|
|||
n, readErr = io.ReadFull(r, resp.Data)
|
||||
if readErr == io.ErrUnexpectedEOF {
|
||||
readErr = nil
|
||||
}
|
||||
}
|
||||
} else {
|
||||
n, readErr = r.Read(resp.Data)
|
||||
if readErr == io.EOF {
|
||||
|
|
|
@ -6,12 +6,13 @@ package sqliteStorage
|
|||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
_ "github.com/anacrolix/envpprof"
|
||||
"github.com/anacrolix/squirrel"
|
||||
"github.com/dustin/go-humanize"
|
||||
qt "github.com/frankban/quicktest"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/anacrolix/torrent/storage"
|
||||
test_storage "github.com/anacrolix/torrent/storage/test"
|
||||
|
|
Loading…
Reference in New Issue