There is memory leak on StlContainerTiXmlBinding::fromXml(..).
It have to release memory like this:
while(child) { T * value = new T(); ... skip ... data->push_back(*value); delete value; // Add THIS!!!
Log in to post a comment.