Skip to content
Snippets Groups Projects
Commit d8a1ff99 authored by Filip Roséen's avatar Filip Roséen Committed by Jean-Baptiste Kempf
Browse files

demux/playlist/itml: remove unnecessary branch


An xml-document containing a tag without a name is ill-formed, so this
case will never happen in practice (as the xml-reader will error out
before).

However, if it for some reason would happen, it will be handled due to
the fact that there will not be any handler matching "".

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 30f79d78
No related branches found
No related tags found
No related merge requests found
......@@ -179,11 +179,6 @@ static bool parse_dict( demux_t *p_demux, input_item_node_t *p_input_node,
{
/* element start tag */
case XML_READER_STARTELEM:
if( !*node )
{
msg_Err( p_demux, "invalid XML stream" );
goto end;
}
/* choose handler */
for( p_handler = p_handlers;
p_handler->name && strcmp( node, p_handler->name );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment