Index: net/quic/core/crypto/quic_crypto_client_config.cc |
diff --git a/net/quic/core/crypto/quic_crypto_client_config.cc b/net/quic/core/crypto/quic_crypto_client_config.cc |
index a94cbf865ee6f884733e9365c402bc136bb91353..1fd4bd159b4896bd0ce5242e7a1719a70ddfe2d9 100644 |
--- a/net/quic/core/crypto/quic_crypto_client_config.cc |
+++ b/net/quic/core/crypto/quic_crypto_client_config.cc |
@@ -180,7 +180,7 @@ QuicCryptoClientConfig::CachedState::SetServerConfig(StringPiece server_config, |
if (!matches_existing) { |
server_config_ = server_config.as_string(); |
SetProofInvalid(); |
- scfg_.reset(new_scfg_storage.release()); |
+ scfg_ = std::move(new_scfg_storage); |
} |
return SERVER_CONFIG_VALID; |
} |