From e021e1f42c817bf36b0ad84ffff1df797cbfa077 Mon Sep 17 00:00:00 2001 From: Jonas Häggqvist Date: Sun, 26 Jun 2005 22:43:57 +0000 Subject: Patch 1163135 by Bryan Vandyke: Remove trailing spaces for ID3v2 tags git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6885 a1c6a512-1295-4272-9138-f99709370657 --- firmware/id3.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'firmware') diff --git a/firmware/id3.c b/firmware/id3.c index 3a8296a8ae..6a13de4e29 100644 --- a/firmware/id3.c +++ b/firmware/id3.c @@ -708,8 +708,12 @@ static void setid3v2title(int fd, struct mp3entry *entry) unicode_munge( ptag, &bytesread ); tag = *ptag; - tag[bytesread++] = 0; - bufferpos += bytesread; + /* remove trailing spaces */ + while ( bytesread > 0 && isspace(tag[bytesread-1])) + bytesread--; + tag[bytesread] = 0; + bufferpos += bytesread + 1; + if( tr->ppFunc ) bufferpos = tr->ppFunc(entry, tag, bufferpos); break; -- cgit v1.2.3