libedit: fix iterator off end of vector (lp:1537946)

This commit is contained in:
Chris Pavlina 2016-01-25 20:52:13 -05:00
parent e91dab816c
commit ac54b7d114
1 changed files with 5 additions and 5 deletions

View File

@ -1754,15 +1754,15 @@ void LIB_PART::SetAliases( const wxArrayString& aAliasList )
}
// Remove names in the current component that are not in the new alias list.
LIB_ALIASES::iterator it;
LIB_ALIASES::iterator it = m_aliases.begin();
for( it = m_aliases.begin(); it != m_aliases.end(); it++ )
while( it != m_aliases.end() )
{
int index = aAliasList.Index( (*it)->GetName(), false );
if( index != wxNOT_FOUND || (*it)->IsRoot() )
continue;
++it;
else
it = m_aliases.erase( it );
}
}