mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 21:07:41 +03:00
Fix buffer read
This commit is contained in:
parent
605697c1ae
commit
a817f7084d
1 changed files with 3 additions and 7 deletions
|
@ -303,16 +303,12 @@ func (b *Buffer) ReadBytes(n int) ([]byte, error) {
|
|||
}
|
||||
|
||||
func (b *Buffer) Read(data []byte) (n int, err error) {
|
||||
if b.Len() == 0 {
|
||||
if b.IsEmpty() {
|
||||
return 0, io.EOF
|
||||
}
|
||||
n = copy(data, b.data[b.start:b.end])
|
||||
if n == b.Len() {
|
||||
b.Reset()
|
||||
} else {
|
||||
b.start += n
|
||||
}
|
||||
return n, nil
|
||||
b.start += n
|
||||
return
|
||||
}
|
||||
|
||||
func (b *Buffer) WriteTo(w io.Writer) (int64, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue