Skip to content

Commit 3b54c0f

Browse files
committed
fix a possible race condition
1 parent 3627305 commit 3b54c0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stream.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ func (s *Stream) WriteTo(w io.Writer) (n int64, err error) {
103103

104104
if buf != nil {
105105
nw, ew := w.Write(buf)
106-
defaultAllocator.Put(buf)
107106
s.sess.returnTokens(len(buf))
107+
defaultAllocator.Put(buf)
108108
if nw > 0 {
109109
n += int64(nw)
110110
}

0 commit comments

Comments
 (0)