receive stream: put back the buffer for the last STREAM frame (#3832)

This commit is contained in:
Marten Seemann 2023-06-02 13:22:51 +03:00 committed by GitHub
parent 8a74f01add
commit f392c8a17b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -179,6 +179,10 @@ func (s *receiveStream) readImpl(p []byte) (bool /*stream completed */, int, err
if s.readPosInFrame >= len(s.currentFrame) && s.currentFrameIsLast {
s.finRead = true
s.currentFrame = nil
if s.currentFrameDone != nil {
s.currentFrameDone()
}
return true, bytesRead, io.EOF
}
}