Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Unified Diff: net/quic/quic_session.cc

Issue 14287009: Land Recent QUIC Changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with Tot Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/quic_protocol.cc ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_session.cc
diff --git a/net/quic/quic_session.cc b/net/quic/quic_session.cc
index dd90fec92c28b46d3436a5baa4e10b5120fffad5..8e9e4117a9ba507d8ba0f34c27ea01188afeb553 100644
--- a/net/quic/quic_session.cc
+++ b/net/quic/quic_session.cc
@@ -184,9 +184,10 @@ void QuicSession::CloseStream(QuicStreamId stream_id) {
DLOG(INFO) << "Stream is already closed: " << stream_id;
return;
}
- it->second->OnClose();
+ ReliableQuicStream* stream = it->second;
closed_streams_.push_back(it->second);
stream_map_.erase(it);
+ stream->OnClose();
}
bool QuicSession::IsCryptoHandshakeComplete() {
« no previous file with comments | « net/quic/quic_protocol.cc ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698