Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
medialibrary
Commits
f2654961
Commit
f2654961
authored
Jun 22, 2018
by
Hugo Beauzée-Luyssen
Browse files
Url: Don't encore win32 path separators
parent
cbcee83f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/utils/Url.cpp
View file @
f2654961
...
...
@@ -34,7 +34,11 @@ namespace
{
inline
bool
isSafe
(
char
c
)
{
return
strchr
(
".-_~/()&!$*+,;='@:"
,
c
)
!=
NULL
;
return
strchr
(
".-_~/()&!$*+,;='@:"
#ifdef _WIN32
"
\\
"
#endif
,
c
)
!=
NULL
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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