1
0
Fork 0
forked from len0rd/rockbox

Skipping unknown ID3V2 frames didn't work as expected with global unsynch. This fixes bug report #887332.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4379 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-03-13 22:55:47 +00:00
parent 0499ffb774
commit a85a525893

View file

@ -640,7 +640,7 @@ static void setid3v2title(int fd, struct mp3entry *entry)
skip it using the total size */
if(global_unsynch && version <= ID3_VER_2_3) {
skip_unsynched(fd, totframelen);
size -= skip_unsynched(fd, totframelen);
} else {
if(data_length_ind)
totframelen = data_length_ind;