1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 18:45:23 +00:00

also resize value when error

This commit is contained in:
Darien Raymond 2016-11-22 00:00:27 +01:00
parent 36cc6f5ef2
commit 85f9e39416
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -190,9 +190,7 @@ func (b *Buffer) FillFrom(reader io.Reader) (int, error) {
begin := b.Len()
b.Value = b.Value[:cap(b.Value)]
nBytes, err := reader.Read(b.Value[begin:])
if err == nil {
b.Value = b.Value[:begin+nBytes]
}
b.Value = b.Value[:begin+nBytes]
return nBytes, err
}