| Index: net/quic/core/quic_framer.cc
|
| diff --git a/net/quic/core/quic_framer.cc b/net/quic/core/quic_framer.cc
|
| index 729eacc56bf32dcf547ae07051d2852d226a37d9..d09c34258010490536ef2f0df435a8c0b1f9e6bc 100644
|
| --- a/net/quic/core/quic_framer.cc
|
| +++ b/net/quic/core/quic_framer.cc
|
| @@ -1653,7 +1653,7 @@ bool QuicFramer::DecryptPayload(QuicDataReader* encrypted_reader,
|
| if (alternative_decrypter_latch_) {
|
| // Switch to the alternative decrypter and latch so that we cannot
|
| // switch back.
|
| - decrypter_.reset(alternative_decrypter_.release());
|
| + decrypter_ = std::move(alternative_decrypter_);
|
| decrypter_level_ = alternative_decrypter_level_;
|
| alternative_decrypter_level_ = ENCRYPTION_NONE;
|
| } else {
|
|
|