| Index: Source/core/html/forms/CheckedRadioButtons.cpp
|
| diff --git a/Source/core/html/forms/CheckedRadioButtons.cpp b/Source/core/html/forms/CheckedRadioButtons.cpp
|
| index b818afa0cdd5e26fcf39059b844c1182a49c6fcd..63005af322f52502cf79e4623ab5ffdcd0ae89bc 100644
|
| --- a/Source/core/html/forms/CheckedRadioButtons.cpp
|
| +++ b/Source/core/html/forms/CheckedRadioButtons.cpp
|
| @@ -193,7 +193,7 @@ void CheckedRadioButtons::addButton(HTMLInputElement* element)
|
| if (!m_nameToGroupMap)
|
| m_nameToGroupMap = adoptPtr(new NameToGroupMap);
|
|
|
| - OwnPtr<RadioButtonGroup>& group = m_nameToGroupMap->add(element->name(), PassOwnPtr<RadioButtonGroup>()).iterator->value;
|
| + OwnPtr<RadioButtonGroup>& group = m_nameToGroupMap->add(element->name(), PassOwnPtr<RadioButtonGroup>()).storedValue->value;
|
| if (!group)
|
| group = RadioButtonGroup::create();
|
| group->add(element);
|
|
|