| Index: components/autofill/core/browser/form_structure.cc
|
| diff --git a/components/autofill/core/browser/form_structure.cc b/components/autofill/core/browser/form_structure.cc
|
| index 61bcd71a5ce86a6c760703fdb58dc3cbbdf2ed5c..5073ab0d4c1b714d46aa21ac7023646d1db7acc7 100644
|
| --- a/components/autofill/core/browser/form_structure.cc
|
| +++ b/components/autofill/core/browser/form_structure.cc
|
| @@ -435,7 +435,7 @@ bool FormStructure::EncodeQueryRequest(
|
| // Some badly formatted web sites repeat forms - detect that and encode only
|
| // one form as returned data would be the same for all the repeated forms.
|
| std::set<std::string> processed_forms;
|
| - for (const auto& form : forms) {
|
| + for (auto* form : forms) {
|
| std::string signature(form->FormSignature());
|
| if (processed_forms.find(signature) != processed_forms.end())
|
| continue;
|
|
|