1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-05-11 15:09:07 -04:00

fix length check in auth reader

This commit is contained in:
Darien Raymond
2017-11-18 19:37:36 +01:00
parent 5751490802
commit 5c9f54a453

View File

@@ -162,7 +162,7 @@ func (r *AuthenticationReader) ReadMultiBuffer() (buf.MultiBuffer, error) {
mb.Write(b)
} else {
var bb *buf.Buffer
if len(b) < buf.Size {
if len(b) <= buf.Size {
bb = buf.New()
} else {
bb = buf.NewLocal(len(b))
@@ -180,7 +180,7 @@ func (r *AuthenticationReader) ReadMultiBuffer() (buf.MultiBuffer, error) {
mb.Write(b)
} else {
var bb *buf.Buffer
if len(b) < buf.Size {
if len(b) <= buf.Size {
bb = buf.New()
} else {
bb = buf.NewLocal(len(b))