| Index: Source/core/html/forms/FormController.cpp
|
| diff --git a/Source/core/html/forms/FormController.cpp b/Source/core/html/forms/FormController.cpp
|
| index d25d70f4f5df6752968f9a7b7393ec4580197762..79e09c53f12e9fa8031d6ac13749c2edf0516bec 100644
|
| --- a/Source/core/html/forms/FormController.cpp
|
| +++ b/Source/core/html/forms/FormController.cpp
|
| @@ -413,7 +413,7 @@ Vector<String> DocumentState::toStateVector()
|
| OwnPtrWillBeRawPtr<FormKeyGenerator> keyGenerator = FormKeyGenerator::create();
|
| OwnPtr<SavedFormStateMap> stateMap = adoptPtr(new SavedFormStateMap);
|
| for (FormElementListHashSet::const_iterator it = m_formControls.begin(); it != m_formControls.end(); ++it) {
|
| - HTMLFormControlElementWithState* control = (*it).get();
|
| + HTMLFormControlElementWithState* control = it->get();
|
| ASSERT(control->inDocument());
|
| if (!control->shouldSaveAndRestoreFormControlState())
|
| continue;
|
|
|