return the putStream error in the streamsMap

This commit is contained in:
Marten Seemann 2018-02-02 12:01:04 +08:00
parent d0a394430f
commit 25b8052985
2 changed files with 4 additions and 8 deletions

View file

@ -128,15 +128,13 @@ func (m *streamsMap) openRemoteStream(id protocol.StreamID) (streamI, error) {
m.highestStreamOpenedByPeer = id
}
s := m.newStream(id)
m.putStream(s)
return s, nil
return s, m.putStream(s)
}
func (m *streamsMap) openStreamImpl() (streamI, error) {
s := m.newStream(m.nextStreamToOpen)
m.putStream(s)
m.nextStreamToOpen = m.nextStreamID(m.nextStreamToOpen)
return s, nil
return s, m.putStream(s)
}
// OpenStream opens the next available stream