Don't stop parsing an ID3v2 SYLT frame when its description is empty.

This commit is contained in:
Tsuda Kageyu
2016-03-14 20:35:09 +09:00
parent 7d270a7e20
commit b2a6768704
3 changed files with 32 additions and 1 deletions

View File

@ -158,7 +158,7 @@ void SynchronizedLyricsFrame::parseFields(const ByteVector &data)
int pos = 6;
d->description = readStringField(data, d->textEncoding, &pos);
if(d->description.isEmpty())
if(pos == 6)
return;
/*