playlist/xspf: ignore text in root, playlist, tracklist

Added a missing "break".
This commit is contained in:
Max Kellermann 2009-10-21 23:27:05 +02:00
parent 9526fdbe73
commit 2024763d2a

View File

@ -170,6 +170,8 @@ xspf_text(G_GNUC_UNUSED GMarkupParseContext *context,
case ROOT: case ROOT:
case PLAYLIST: case PLAYLIST:
case TRACKLIST: case TRACKLIST:
break;
case TRACK: case TRACK:
if (parser->song != NULL && if (parser->song != NULL &&
parser->tag != TAG_NUM_OF_ITEM_TYPES) { parser->tag != TAG_NUM_OF_ITEM_TYPES) {