Fix buffer read

This commit is contained in:
世界 2022-06-28 07:46:42 +08:00
parent 605697c1ae
commit a817f7084d
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -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) {