Index: Source/core/dom/ChildListMutationScope.cpp |
diff --git a/Source/core/dom/ChildListMutationScope.cpp b/Source/core/dom/ChildListMutationScope.cpp |
index 1d00364cac526658c0402f8fffa1fd78c17aec2f..699b554100f797d230970aa31fa004c0d2d604fe 100644 |
--- a/Source/core/dom/ChildListMutationScope.cpp |
+++ b/Source/core/dom/ChildListMutationScope.cpp |
@@ -65,10 +65,10 @@ PassRefPtr<ChildListMutationAccumulator> ChildListMutationAccumulator::getOrCrea |
AccumulatorMap::AddResult result = accumulatorMap().add(&target, 0); |
RefPtr<ChildListMutationAccumulator> accumulator; |
if (!result.isNewEntry) |
- accumulator = result.iterator->value; |
+ accumulator = result.storedValue->value; |
else { |
accumulator = adoptRef(new ChildListMutationAccumulator(PassRefPtr<Node>(target), MutationObserverInterestGroup::createForChildListMutation(target))); |
- result.iterator->value = accumulator.get(); |
+ result.storedValue->value = accumulator.get(); |
} |
return accumulator.release(); |
} |