1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 10:08:15 -05:00

reallocate in for loop

This commit is contained in:
Darien Raymond 2017-11-17 09:18:12 +00:00
parent 88b521c77e
commit afcad409e2
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -60,12 +60,12 @@ func (w *BufferedWriter) Write(b []byte) (int, error) {
return w.legacyWriter.Write(b)
}
if w.buffer == nil {
w.buffer = New()
}
totalBytes := 0
for len(b) > 0 {
if w.buffer == nil {
w.buffer = New()
}
nBytes, err := w.buffer.Write(b)
totalBytes += nBytes
if err != nil {