mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-02-20 23:47:21 -05:00
return correct length in ReadFrom
This commit is contained in:
parent
202ac9bb56
commit
2c82f65189
@ -33,13 +33,13 @@ func (this *BufferedWriter) ReadFrom(reader io.Reader) (int64, error) {
|
||||
totalBytes := int64(0)
|
||||
for {
|
||||
nBytes, err := this.buffer.FillFrom(reader)
|
||||
totalBytes += int64(nBytes)
|
||||
if err != nil {
|
||||
if err == io.EOF {
|
||||
return totalBytes, nil
|
||||
}
|
||||
return totalBytes, err
|
||||
}
|
||||
totalBytes += int64(nBytes)
|
||||
this.FlushWithoutLock()
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user