| Index: chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc
|
| diff --git a/chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc b/chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc
|
| index 35f06fc9250087e7feb1005c299d1ff320e4f744..41ea8ef0c8961c0990f8f50ff43a0253cacbb6b6 100644
|
| --- a/chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc
|
| +++ b/chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc
|
| @@ -268,8 +268,8 @@ bool FamilyInfoFetcher::ParseMembers(const base::ListValue* list,
|
| it != list->end();
|
| it++) {
|
| FamilyMember member;
|
| - base::DictionaryValue* dict = NULL;
|
| - if (!(*it)->GetAsDictionary(&dict) || !ParseMember(dict, &member)) {
|
| + const base::DictionaryValue* dict = NULL;
|
| + if (!it->GetAsDictionary(&dict) || !ParseMember(dict, &member)) {
|
| return false;
|
| }
|
| members->push_back(member);
|
|
|