diff options
-rw-r--r-- | net/data/valgrind/net_unittests.gtest.txt | 1 | ||||
-rw-r--r-- | net/spdy/spdy_session.cc | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/net/data/valgrind/net_unittests.gtest.txt b/net/data/valgrind/net_unittests.gtest.txt index 55f7797..6d9ac60 100644 --- a/net/data/valgrind/net_unittests.gtest.txt +++ b/net/data/valgrind/net_unittests.gtest.txt @@ -3,4 +3,3 @@ KeygenHandlerTest.*SmokeTest # Fails Valgrind with varying stack traces. http://crbug.com/43179 SpdySessionTest.GetPushStream -SpdyNetworkTransactionTest.CloseWithActiveStream diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc index fc20bd0..f0d0904 100644 --- a/net/spdy/spdy_session.cc +++ b/net/spdy/spdy_session.cc @@ -629,7 +629,7 @@ void SpdySession::ReadSocket() { switch (bytes_read) { case 0: // Socket is closed! - CloseAllStreams(ERR_CONNECTION_CLOSED); + CloseSessionOnError(ERR_CONNECTION_CLOSED); return; case net::ERR_IO_PENDING: // Waiting for data. Nothing to do now. |