| Index: remoting/host/pairing_registry_delegate_win.cc
|
| diff --git a/remoting/host/pairing_registry_delegate_win.cc b/remoting/host/pairing_registry_delegate_win.cc
|
| index a714e31c38432388ce74c846f9a2d71dd45404cd..90b04ba771b21076f04ae6b484e6386cb149acc1 100644
|
| --- a/remoting/host/pairing_registry_delegate_win.cc
|
| +++ b/remoting/host/pairing_registry_delegate_win.cc
|
| @@ -52,8 +52,8 @@ scoped_ptr<base::DictionaryValue> ReadValue(const base::win::RegKey& key,
|
| JSONStringValueDeserializer deserializer(value_json_utf8);
|
| int error_code;
|
| std::string error_message;
|
| - scoped_ptr<base::Value> value(deserializer.Deserialize(&error_code,
|
| - &error_message));
|
| + scoped_ptr<base::Value> value =
|
| + deserializer.Deserialize(&error_code, &error_message);
|
| if (!value) {
|
| LOG(ERROR) << "Failed to parse '" << value_name << "': " << error_message
|
| << " (" << error_code << ").";
|
|
|