From 2024763d2a5e960c63ef4e1e3770c28ff253d61e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 21 Oct 2009 23:27:05 +0200 Subject: playlist/xspf: ignore text in root, playlist, tracklist Added a missing "break". --- src/playlist/xspf_playlist_plugin.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/playlist/xspf_playlist_plugin.c b/src/playlist/xspf_playlist_plugin.c index 9c3a8eb57..6c81d979d 100644 --- a/src/playlist/xspf_playlist_plugin.c +++ b/src/playlist/xspf_playlist_plugin.c @@ -170,6 +170,8 @@ xspf_text(G_GNUC_UNUSED GMarkupParseContext *context, case ROOT: case PLAYLIST: case TRACKLIST: + break; + case TRACK: if (parser->song != NULL && parser->tag != TAG_NUM_OF_ITEM_TYPES) { -- cgit v1.2.3