Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
b149f96f
Commit
b149f96f
authored
Sep 23, 2008
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Oops.
parent
423954f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/text/strings.c
src/text/strings.c
+6
-6
No files found.
src/text/strings.c
View file @
b149f96f
...
...
@@ -381,13 +381,13 @@ void resolve_xml_special_chars( char *psz_value )
if( !strncmp( psz_value1, src, len ) ) \
{ \
*p_pos = dst; \
psz_value += len
;
\
psz_value += len
+ 1;
\
}
TRY_CHAR
(
"lt;"
,
4
,
'<'
)
else
TRY_CHAR
(
"amp;"
,
5
,
'&'
)
else
TRY_CHAR
(
"apos;"
,
6
,
'\''
)
else
TRY_CHAR
(
"gt;"
,
4
,
'>'
)
else
TRY_CHAR
(
"quot;"
,
6
,
'"'
)
TRY_CHAR
(
"lt;"
,
3
,
'<'
)
else
TRY_CHAR
(
"amp;"
,
4
,
'&'
)
else
TRY_CHAR
(
"apos;"
,
5
,
'\''
)
else
TRY_CHAR
(
"gt;"
,
3
,
'>'
)
else
TRY_CHAR
(
"quot;"
,
5
,
'"'
)
#undef TRY_CHAR
else
if
(
*
psz_value1
==
'#'
)
{
...
...
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