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

Fix dead assignement and cleaning.

parent 4a71c838
...@@ -33,9 +33,9 @@ ...@@ -33,9 +33,9 @@
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include "vlc_xml.h" #include <vlc_xml.h>
#include "vlc_block.h" #include <vlc_block.h>
#include "vlc_stream.h" #include <vlc_stream.h>
#include <ctype.h> #include <ctype.h>
#include <stdarg.h> #include <stdarg.h>
...@@ -628,7 +628,7 @@ static XTag *xtag_parse_tag( XTagParser *parser ) ...@@ -628,7 +628,7 @@ static XTag *xtag_parse_tag( XTagParser *parser )
!strncmp( s, "<!DOCTYPE", 9 ) ) { !strncmp( s, "<!DOCTYPE", 9 ) ) {
xi = xtag_index( parser, X_CLOSETAG ); xi = xtag_index( parser, X_CLOSETAG );
if ( xi > 0 ) { if ( xi > 0 ) {
parser->start = s = &s[xi+1]; parser->start = &s[xi+1];
xtag_skip_whitespace( parser ); xtag_skip_whitespace( parser );
return xtag_parse_tag( parser ); return xtag_parse_tag( parser );
} }
...@@ -668,7 +668,7 @@ static XTag *xtag_parse_tag( XTagParser *parser ) ...@@ -668,7 +668,7 @@ static XTag *xtag_parse_tag( XTagParser *parser )
} }
strncpy( pcdata, parser->start, s - parser->start ); strncpy( pcdata, parser->start, s - parser->start );
pcdata[s - parser->start]='\0'; pcdata[s - parser->start]='\0';
parser->start = s = &s[3]; parser->start = &s[3];
tag->name = NULL; tag->name = NULL;
tag->pcdata = pcdata; tag->pcdata = pcdata;
tag->parent = parser->current_tag; tag->parent = parser->current_tag;
......
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