correct iterator push on NodeList clear

This commit is contained in:
Stephen Birarda 2014-01-14 10:53:17 -08:00
parent 9efb391ecf
commit 718d04bd71

View file

@ -279,8 +279,7 @@ void NodeList::clear() {
// iterate the nodes in the list
while (nodeItem != _nodeHash.end()) {
killNodeAtHashIterator(nodeItem);
nodeItem++;
nodeItem = killNodeAtHashIterator(nodeItem);
}
}