Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
9e46824b
Commit
9e46824b
authored
Feb 28, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: convert file:// URI to path correctly
This mostly reverts commit
37de4458
.
parent
add8534f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
33 deletions
+13
-33
src/text/strings.c
src/text/strings.c
+13
-33
No files found.
src/text/strings.c
View file @
9e46824b
...
@@ -1165,20 +1165,6 @@ char *make_path (const char *url)
...
@@ -1165,20 +1165,6 @@ char *make_path (const char *url)
size_t
schemelen
=
((
end
!=
NULL
)
?
end
:
path
)
-
url
;
size_t
schemelen
=
((
end
!=
NULL
)
?
end
:
path
)
-
url
;
path
+=
3
;
/* skip "://" */
path
+=
3
;
/* skip "://" */
#ifdef WIN32
/* skip leading slash before disk drive
* when format is file:///C:/path/file.ext
*/
if
(
schemelen
==
4
&&
!
strncasecmp
(
url
,
"file"
,
4
))
{
char
*
search
=
strstr
(
path
,
":/"
);
if
(
search
&&
*
path
==
'/'
&&
search
==
path
+
2
)
path
++
;
}
#endif
/* Remove HTML anchor if present */
/* Remove HTML anchor if present */
end
=
strchr
(
path
,
'#'
);
end
=
strchr
(
path
,
'#'
);
if
(
end
)
if
(
end
)
...
@@ -1194,32 +1180,26 @@ char *make_path (const char *url)
...
@@ -1194,32 +1180,26 @@ char *make_path (const char *url)
if
(
schemelen
==
4
&&
!
strncasecmp
(
url
,
"file"
,
4
))
if
(
schemelen
==
4
&&
!
strncasecmp
(
url
,
"file"
,
4
))
{
{
#if (DIR_SEP_CHAR != '/')
#if (DIR_SEP_CHAR != '/')
for
(
char
*
p
=
strchr
(
path
,
'/'
);
p
;
p
=
strchr
(
p
,
'/'
))
for
(
char
*
p
=
strchr
(
path
,
'/'
);
p
;
p
=
strchr
(
p
+
1
,
'/'
))
*
p
++
=
DIR_SEP_CHAR
;
*
p
=
DIR_SEP_CHAR
;
#endif
#endif
/* Leading slash => local path */
#ifdef WIN32
/* check for disk drive in the form 'C:\...' */
char
*
search
=
strstr
(
path
,
":"
DIR_SEP
);
if
(
search
&&
search
==
path
+
1
)
return
path
;
if
(
*
path
&&
asprintf
(
&
ret
,
"
\\\\
%s"
,
path
)
==
-
1
)
ret
=
NULL
;
goto
out
;
#else
if
(
*
path
==
DIR_SEP_CHAR
)
if
(
*
path
==
DIR_SEP_CHAR
)
#ifndef WIN32
return
path
;
return
path
;
#else
return
memmove
(
path
,
path
+
1
,
strlen
(
path
+
1
)
+
1
);
#endif
/* Local path disguised as a remote one (MacOS X) */
/* Local path disguised as a remote one (MacOS X) */
if
(
!
strncasecmp
(
path
,
"localhost"
DIR_SEP
,
10
))
if
(
!
strncasecmp
(
path
,
"localhost"
DIR_SEP
,
10
))
{
return
memmove
(
path
,
path
+
9
,
strlen
(
path
+
9
)
+
1
);
memmove
(
path
,
path
+
9
,
strlen
(
path
+
9
)
+
1
);
return
path
;
#ifdef WIN32
}
if
(
*
path
&&
asprintf
(
&
ret
,
"
\\\\
%s"
,
path
)
==
-
1
)
ret
=
NULL
;
#endif
#endif
/* non-local path :-( */
}
}
else
else
if
(
schemelen
==
2
&&
!
strncasecmp
(
url
,
"fd"
,
2
))
if
(
schemelen
==
2
&&
!
strncasecmp
(
url
,
"fd"
,
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