mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-07-31 18:42:33 +08:00
fix reading from a url
This commit is contained in:
parent
7b81cf3762
commit
c11d84f314
@ -201,7 +201,10 @@ func ReadUrl(fileUrl string, offset int64, size int, buf []byte) (n int64, e err
|
|||||||
var i, m int
|
var i, m int
|
||||||
|
|
||||||
for {
|
for {
|
||||||
m, err = r.Body.Read(buf[i:cap(buf)])
|
m, err = r.Body.Read(buf[i:])
|
||||||
|
if m == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
i += m
|
i += m
|
||||||
n += int64(m)
|
n += int64(m)
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
|
Loading…
Reference in New Issue
Block a user