fix race when stream.Read and CancelRead are called concurrently

This commit is contained in:
Marten Seemann 2021-07-29 13:41:40 +02:00
parent 8906148682
commit fbc30cd942
2 changed files with 54 additions and 5 deletions

View file

@ -109,7 +109,10 @@ func (c *streamFlowController) AddBytesRead(n protocol.ByteCount) {
}
func (c *streamFlowController) Abandon() {
if unread := c.highestReceived - c.bytesRead; unread > 0 {
c.mutex.Lock()
unread := c.highestReceived - c.bytesRead
c.mutex.Unlock()
if unread > 0 {
c.connection.AddBytesRead(unread)
}
}