Commit 9d546a7e authored by Rémi Duraffort's avatar Rémi Duraffort

itml: indentation.

parent 72ddabb8
......@@ -218,21 +218,16 @@ static bool parse_dict( demux_t *p_demux, input_item_t *p_input_item,
/* complex content is parsed in a separate function */
if( p_handler->type == COMPLEX_CONTENT )
{
if( p_handler->pf_handler.cmplx( p_demux,
p_input_item,
NULL,
p_xml_reader,
p_handler->name,
if( p_handler->pf_handler.cmplx( p_demux, p_input_item, NULL,
p_xml_reader, p_handler->name,
NULL ) )
{
p_handler = NULL;
FREE_ATT_KEY();
}
else
{
goto end;
}
}
break;
case XML_READER_TEXT:
......@@ -262,7 +257,7 @@ static bool parse_dict( demux_t *p_demux, input_item_t *p_input_item,
}
/* there MUST have been a start tag for that element name */
if( !p_handler || !p_handler->name
|| strcmp( p_handler->name, psz_name ))
|| strcmp( p_handler->name, psz_name ) )
{
msg_Err( p_demux, "there's no open element left for <%s>",
psz_name );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment