diff options
author | Max Kellermann <max@duempel.org> | 2009-10-21 23:27:05 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-10-21 23:27:05 +0200 |
commit | 2024763d2a5e960c63ef4e1e3770c28ff253d61e (patch) | |
tree | b9285dca62b048fc00d842aaa8027e8fe7c9e29a /src/playlist | |
parent | 9526fdbe730edb4b095a1e12aade0e16f1da2292 (diff) | |
download | mpd-2024763d2a5e960c63ef4e1e3770c28ff253d61e.tar.gz mpd-2024763d2a5e960c63ef4e1e3770c28ff253d61e.tar.xz mpd-2024763d2a5e960c63ef4e1e3770c28ff253d61e.zip |
playlist/xspf: ignore text in root, playlist, tracklist
Added a missing "break".
Diffstat (limited to 'src/playlist')
-rw-r--r-- | src/playlist/xspf_playlist_plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
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) { |