| Index: net/quic/quic_connection.cc
|
| diff --git a/net/quic/quic_connection.cc b/net/quic/quic_connection.cc
|
| index efb3e96d5288cbe70c4eccd578f82c77ee962a43..cb3033be29b79c4795de2ffdeca703b262b823d6 100644
|
| --- a/net/quic/quic_connection.cc
|
| +++ b/net/quic/quic_connection.cc
|
| @@ -180,6 +180,7 @@ bool QuicConnection::OnProtocolVersionMismatch(
|
| LOG(DFATAL) << "Framer called OnProtocolVersionMismatch for server. "
|
| << "Closing connection.";
|
| CloseConnection(QUIC_INTERNAL_ERROR, false);
|
| + return false;
|
| }
|
| DCHECK_NE(quic_version_, received_version);
|
|
|
| @@ -229,6 +230,7 @@ void QuicConnection::OnVersionNegotiationPacket(
|
| LOG(DFATAL) << "Framer parsed VersionNegotiationPacket for server."
|
| << "Closing connection.";
|
| CloseConnection(QUIC_INTERNAL_ERROR, false);
|
| + return;
|
| }
|
| if (debug_visitor_) {
|
| debug_visitor_->OnVersionNegotiationPacket(packet);
|
|
|