diff --git a/simgear/props/props.cxx b/simgear/props/props.cxx index 32d435d8..917b2aeb 100755 --- a/simgear/props/props.cxx +++ b/simgear/props/props.cxx @@ -1196,6 +1196,7 @@ SGPropertyNode::getChild (const std::string& name, int index, bool create) return node; #endif } else if (create) { + // REVIEW: Memory Leak - 12,862 (11,856 direct, 1,006 indirect) bytes in 78 blocks are definitely lost SGPropertyNode* node = new SGPropertyNode(name, index, this); _children.push_back(node); fireChildAdded(node);