Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
9bf4d5d3
Commit
9bf4d5d3
authored
Jul 16, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix dead assignement and cleaning.
parent
4a71c838
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/misc/xml/xtag.c
modules/misc/xml/xtag.c
+5
-5
No files found.
modules/misc/xml/xtag.c
View file @
9bf4d5d3
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment