mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
id3demux: fix parsing of ID3v2.4 genre frames with multiple genres
We'd only extract the first genre (multiple times) instead of all genres. https://bugzilla.gnome.org/show_bug.cgi?id=638535
This commit is contained in:
parent
79a8e0ee42
commit
5b79a3d2f8
1 changed files with 1 additions and 1 deletions
|
@ -875,7 +875,7 @@ id3v2_genre_fields_to_taglist (ID3TagsWorking * work, const gchar * tag_name,
|
||||||
for (i = 0; i < tag_fields->len; i++) {
|
for (i = 0; i < tag_fields->len; i++) {
|
||||||
gint len;
|
gint len;
|
||||||
|
|
||||||
tag_str = g_array_index (tag_fields, gchar *, 0);
|
tag_str = g_array_index (tag_fields, gchar *, i);
|
||||||
if (tag_str == NULL)
|
if (tag_str == NULL)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue