Memory Leak: 95 MB
99,418,032 bytes in 654,066 blocks are still reachable in loss record 15,500 of 15,501
This commit is contained in:
parent
f76c640b69
commit
cb54815cfc
@ -973,9 +973,10 @@ SGPropertyNode::SGPropertyNode( const std::string& name,
|
||||
*/
|
||||
SGPropertyNode::~SGPropertyNode ()
|
||||
{
|
||||
// zero out all parent pointers, else they might be dangling
|
||||
for (unsigned i = 0; i < _children.size(); ++i)
|
||||
_children[i]->_parent = 0;
|
||||
// REVIEW: Memory Leak: 95 MB
|
||||
// 99,418,032 bytes in 654,066 blocks are still reachable in loss record 15,500 of 15,501
|
||||
removeAllChildren();
|
||||
|
||||
clearValue();
|
||||
|
||||
if (_listeners) {
|
||||
|
@ -2045,7 +2045,6 @@ T SGPropertyNode::getValue(typename std::enable_if<!simgear::props
|
||||
case STRING:
|
||||
case UNSPECIFIED:
|
||||
return simgear::parseString<T>(make_string());
|
||||
break;
|
||||
default: // avoid compiler warning
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user