1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-21 16:56:27 -05: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
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

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