| 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 f4219042ab507f656d7bffe365b8735eb40bb803..124a2cd1100a9598231854ee563ca92a6a336489 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));
|
| }
|
|
|