reduce readv alloc count

pull/1524/head^2
Darien Raymond 2018-07-27 23:35:50 +02:00
parent 28ccd4ddd5
commit f99fb3d87d
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ func (r *ReadVReader) ReadMultiBuffer() (MultiBuffer, error) {
bs[i] = nil
}
if isFull && nBuf < 128 {
if isFull && nBuf < 8 {
r.nBuf *= 4
} else {
r.nBuf = int32(nBuf)