From 12065d08cbbd051fa810c73b2f9a730fee4be26b Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Tue, 1 Feb 2005 04:43:50 +0000 Subject: [PATCH] fix bug in FLAC_plugin__tags_get_tag_utf8(), it was returning the whole entry instead of just the value --- src/plugin_common/tags.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin_common/tags.c b/src/plugin_common/tags.c index ab66b0df..8c3008b6 100644 --- a/src/plugin_common/tags.c +++ b/src/plugin_common/tags.c @@ -226,7 +226,7 @@ void FLAC_plugin__tags_destroy(FLAC__StreamMetadata **tags) const char *FLAC_plugin__tags_get_tag_utf8(const FLAC__StreamMetadata *tags, const char *name) { const int i = FLAC__metadata_object_vorbiscomment_find_entry_from(tags, /*offset=*/0, name); - return (i < 0? 0 : tags->data.vorbis_comment.comments[i].entry); + return (i < 0? 0 : strchr(tags->data.vorbis_comment.comments[i].entry, '=')+1); } FLAC__uint16 *FLAC_plugin__tags_get_tag_ucs2(const FLAC__StreamMetadata *tags, const char *name)