]> git.sesse.net Git - vlc/commitdiff
Fix dead assignement and cleaning.
authorRémi Duraffort <ivoire@videolan.org>
Thu, 16 Jul 2009 07:11:02 +0000 (09:11 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Thu, 16 Jul 2009 07:11:02 +0000 (09:11 +0200)
modules/misc/xml/xtag.c

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