mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 01:57:12 -05:00
use WriteByte instead of copy
This commit is contained in:
parent
844f6937a4
commit
e392f8ed3d
@ -17,7 +17,7 @@ func readOne(r io.Reader) (*Buffer, error) {
|
|||||||
|
|
||||||
b := New()
|
b := New()
|
||||||
if nBytes > 0 {
|
if nBytes > 0 {
|
||||||
copy(b.Extend(int32(nBytes)), firstByte[:])
|
common.Must(b.WriteByte(firstByte[0]))
|
||||||
}
|
}
|
||||||
for i := 0; i < 64; i++ {
|
for i := 0; i < 64; i++ {
|
||||||
_, err := b.ReadFrom(r)
|
_, err := b.ReadFrom(r)
|
||||||
|
Loading…
Reference in New Issue
Block a user