fix blowup when a KSF file has a #TITLE tag with nothing in it. (grr)

This commit is contained in:
Thad Ward
2005-10-30 09:45:04 +00:00
parent eea687a01a
commit cd2645fe36
+1 -1
View File
@@ -248,7 +248,7 @@ void KSFLoader::LoadTags( const CString &str, Song &out )
artist = asBits[0]; artist = asBits[0];
title = asBits[1]; title = asBits[1];
} }
else else if( asBits.size() == 1 )
{ {
title = asBits[0]; title = asBits[0];
} }