[vlc-devel] commit: Fix dead assignement and cleaning. ( Rémi Duraffort )

git version control git at videolan.org
Thu Jul 16 11:09:11 CEST 2009


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Thu Jul 16 09:11:02 2009 +0200| [9bf4d5d3ce6384c47d4fdee861aeae44a9e18ea7] | committer: Rémi Duraffort 

Fix dead assignement and cleaning.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9bf4d5d3ce6384c47d4fdee861aeae44a9e18ea7
---

 modules/misc/xml/xtag.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/modules/misc/xml/xtag.c b/modules/misc/xml/xtag.c
index 681be12..957bd59 100644
--- a/modules/misc/xml/xtag.c
+++ b/modules/misc/xml/xtag.c
@@ -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;




More information about the vlc-devel mailing list