mirror of
https://github.com/taglib/taglib.git
synced 2025-07-22 15:04:24 -04:00
Don't stop parsing an ID3v2 SYLT frame when its description is empty.
This commit is contained in:
@ -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;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user