| Index: components/policy/core/common/registry_dict.cc
|
| diff --git a/components/policy/core/common/registry_dict.cc b/components/policy/core/common/registry_dict.cc
|
| index 29c9df73133d7ec59a75f9a95b936961b18a4f2e..2576d091b23c832b4d8344a71915b973019b7e71 100644
|
| --- a/components/policy/core/common/registry_dict.cc
|
| +++ b/components/policy/core/common/registry_dict.cc
|
| @@ -62,7 +62,7 @@ std::unique_ptr<base::Value> ConvertValue(const base::Value& value,
|
| for (base::ListValue::const_iterator entry(list->begin());
|
| entry != list->end(); ++entry) {
|
| std::unique_ptr<base::Value> converted =
|
| - ConvertValue(**entry, schema.GetItems());
|
| + ConvertValue(*entry, schema.GetItems());
|
| if (converted)
|
| result->Append(std::move(converted));
|
| }
|
|
|