forked from len0rd/rockbox
ID3 parser bug fix by Ray Lambert
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6716 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5b9eb29d12
commit
5058f7de05
2 changed files with 3 additions and 2 deletions
|
|
@ -117,3 +117,4 @@ David Bryant
|
|||
Martin Arver
|
||||
Alexander Spyridakis
|
||||
Pedro Baltazar Vasconcelos
|
||||
Ray Lambert
|
||||
|
|
|
|||
|
|
@ -673,8 +673,8 @@ static void setid3v2title(int fd, struct mp3entry *entry)
|
|||
|
||||
unicode_munge( ptag, &bytesread );
|
||||
tag = *ptag;
|
||||
tag[bytesread + 1] = 0;
|
||||
bufferpos += bytesread + 2;
|
||||
tag[bytesread++] = 0;
|
||||
bufferpos += bytesread;
|
||||
if( tr->ppFunc )
|
||||
bufferpos = tr->ppFunc(entry, tag, bufferpos);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue