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
2be9be27
Commit
2be9be27
authored
Apr 11, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lalala
parent
f76c592f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/misc/strings.c
src/misc/strings.c
+1
-1
src/test/url.c
src/test/url.c
+2
-0
No files found.
src/misc/strings.c
View file @
2be9be27
...
...
@@ -142,7 +142,7 @@ void decode_URI( char *psz )
{
case
'%'
:
{
char
hex
[
2
];
char
hex
[
3
];
if
(
(
(
hex
[
0
]
=
*
in
++
)
==
0
)
||
(
(
hex
[
1
]
=
*
in
++
)
==
0
)
)
...
...
src/test/url.c
View file @
2be9be27
...
...
@@ -52,6 +52,8 @@ int main (void)
test_decode
(
"This%20should%20be%20modified%201234!"
,
"This should be modified 1234!"
);
test_decode
(
"%7E"
,
"~"
);
/* tests with invalid input */
test_decode
(
"%"
,
"%"
);
test_decode
(
"%2"
,
"%2"
);
...
...
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