summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-02-22 07:11:11 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-02-22 07:11:11 +0000
commit6bc704e92a305a8e11d798725ad57425751e56aa (patch)
tree8d65416a6ca2808af0ee2d87411f19c4141e8945
parent9d66c878e593ab2fad93370d5dbc192c9fbd391f (diff)
downloadrockbox-6bc704e92a305a8e11d798725ad57425751e56aa.tar.gz
rockbox-6bc704e92a305a8e11d798725ad57425751e56aa.zip
Fix FS#11956. Call parse_replaygain() with correct parameters in ID3 tag parsing.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29375 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/metadata/id3tags.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/apps/metadata/id3tags.c b/apps/metadata/id3tags.c
index ba6a158080..3cbebc12e3 100644
--- a/apps/metadata/id3tags.c
+++ b/apps/metadata/id3tags.c
@@ -357,27 +357,32 @@ static int parseuser( struct mp3entry* entry, char* tag, int bufferpos )
357{ 357{
358 char* value = NULL; 358 char* value = NULL;
359 int desc_len = strlen(tag); 359 int desc_len = strlen(tag);
360 int value_len = 0; 360 int length = 0;
361 361
362 if ((tag - entry->id3v2buf + desc_len + 2) < bufferpos) { 362 if ((tag - entry->id3v2buf + desc_len + 2) < bufferpos) {
363 /* At least part of the value was read, so we can safely try to 363 /* At least part of the value was read, so we can safely try to
364 * parse it */ 364 * parse it */
365 value = tag + desc_len + 1; 365 value = tag + desc_len + 1;
366 value_len = strlen(value) + 1;
367 366
368 if (!strcasecmp(tag, "ALBUM ARTIST")) { 367 if (!strcasecmp(tag, "ALBUM ARTIST")) {
369 strlcpy(tag, value, value_len); 368 length = strlen(value) + 1;
369 strlcpy(tag, value, length);
370 entry->albumartist = tag; 370 entry->albumartist = tag;
371#if CONFIG_CODEC == SWCODEC 371#if CONFIG_CODEC == SWCODEC
372 } else { 372 } else {
373 value_len = parse_replaygain(tag, value, entry, tag, value_len); 373 /* Calculate residual buffer size in bytes which can be used by
374#else 374 * parse_replaygain() to save the string representation of
375 value_len = 0; 375 * replaygain data.*/
376 length = sizeof(entry->id3v2buf) - (tag - entry->id3v2buf);
377
378 /* Call parse_replaygain(), returns length in bytes used by the
379 * string representation of replaygain data. */
380 length = parse_replaygain(tag, value, entry, tag, length);
376#endif 381#endif
377 } 382 }
378 } 383 }
379 384
380 return tag - entry->id3v2buf + value_len; 385 return tag - entry->id3v2buf + length;
381} 386}
382 387
383#if CONFIG_CODEC == SWCODEC 388#if CONFIG_CODEC == SWCODEC