| Index: Source/bindings/v8/RetainedDOMInfo.cpp
|
| diff --git a/Source/bindings/v8/RetainedDOMInfo.cpp b/Source/bindings/v8/RetainedDOMInfo.cpp
|
| index 15a83f213cad8cf0e2e5451fadd3a8debbc73dea..deea73125e905cb6c02eda3699a4dd96e209b515 100644
|
| --- a/Source/bindings/v8/RetainedDOMInfo.cpp
|
| +++ b/Source/bindings/v8/RetainedDOMInfo.cpp
|
| @@ -81,7 +81,7 @@ intptr_t RetainedDOMInfo::GetElementCount()
|
| intptr_t count = 1;
|
| Node* current = m_root;
|
| while (current) {
|
| - current = NodeTraversal::next(current, m_root);
|
| + current = NodeTraversal::next(*current, m_root);
|
| ++count;
|
| }
|
| return count;
|
|
|