Fix Volume::_RemovePackageLinksNode()

Don't use _RemoveNode() as it also removes the node from its parent.
This commit is contained in:
Ingo Weinhold 2011-06-24 13:26:34 +02:00
parent fc009a29f3
commit 5f80e51a9e
1 changed files with 2 additions and 1 deletions

View File

@ -1486,7 +1486,8 @@ Volume::_RemovePackageLinksNode(Node* node)
}
}
_RemoveNode(node);
fNodes.Remove(node);
node->ReleaseReference();
}