don't allow NULL steps in GetSongFromSteps

This commit is contained in:
Chris Danford
2005-12-06 04:20:20 +00:00
parent d057e2a488
commit 9f6d6067fe
+1 -2
View File
@@ -876,8 +876,7 @@ void SongManager::GetStepsLoadedFromProfile( vector<Steps*> &AddTo, ProfileSlot
Song *SongManager::GetSongFromSteps( Steps *pSteps )
{
if( pSteps == NULL )
return NULL;
ASSERT( pSteps );
const vector<Song*> &vSongs = SONGMAN->GetAllSongs();
FOREACH_CONST( Song*, vSongs, song )
{