| Index: net/quic/quic_crypto_stream.cc
|
| diff --git a/net/quic/quic_crypto_stream.cc b/net/quic/quic_crypto_stream.cc
|
| index 84bdf8cf3739bd6529d14907ad0c395e1c392242..7f7b97314edcb4655b5660ac6248b36a5ff4c750 100644
|
| --- a/net/quic/quic_crypto_stream.cc
|
| +++ b/net/quic/quic_crypto_stream.cc
|
| @@ -52,7 +52,8 @@ void QuicCryptoStream::OnDataAvailable() {
|
| }
|
| StringPiece data(static_cast<char*>(iov.iov_base), iov.iov_len);
|
| if (!crypto_framer_.ProcessInput(data)) {
|
| - CloseConnection(crypto_framer_.error());
|
| + CloseConnectionWithDetails(crypto_framer_.error(),
|
| + crypto_framer_.error_detail());
|
| return;
|
| }
|
| sequencer()->MarkConsumed(iov.iov_len);
|
|
|