| Index: net/ssl/channel_id_store.cc
|
| diff --git a/net/ssl/channel_id_store.cc b/net/ssl/channel_id_store.cc
|
| index 1d0078b968f38f7977423d8186d824618c1675b1..9545585e87c3dc20fca31e810d02b2a044bbebe2 100644
|
| --- a/net/ssl/channel_id_store.cc
|
| +++ b/net/ssl/channel_id_store.cc
|
| @@ -33,7 +33,7 @@ ChannelIDStore::ChannelID& ChannelIDStore::ChannelID::operator=(
|
| server_identifier_ = other.server_identifier_;
|
| creation_time_ = other.creation_time_;
|
| if (other.key_)
|
| - key_.reset(other.key_->Copy());
|
| + key_ = other.key_->Copy();
|
| return *this;
|
| }
|
|
|
|
|