recommit the innocuous fixes from cppcheck - the va_end calls were deleting pointers and breaking things further down the line

This commit is contained in:
DarthArgus
2015-04-02 19:40:05 -05:00
parent db15932436
commit bc33f176c2
7 changed files with 11 additions and 13 deletions
@@ -217,8 +217,8 @@ bool VisibleExpandableEntry::pruneInvisibleChildren()
for (Children::iterator i = m_children.begin(); i != m_children.end(); )
if ((*i)->m_visible == false)
{
delete *i;
m_children.erase(i);
delete *i;
}
else
++i;