Skip to content
Snippets Groups Projects
Commit 70a6d76c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont Committed by Jean-Baptiste Kempf
Browse files

Revert "url: handle proprietary dir:// MRL scheme"

This reverts commit de9d757d.
This kludge is no longer necessary.
parent c1c7b3cf
No related branches found
No related tags found
1 merge request!647input: fix URL handling
Pipeline #139778 passed with stages
in 23 minutes and 8 seconds
......@@ -266,8 +266,7 @@ char *vlc_uri2path (const char *url)
/* Decode path */
vlc_uri_decode (path);
if ((schemelen == 4 && !strncasecmp(url, "file", 4))
|| (schemelen == 3 && !strncasecmp(url, "dir", 3)))
if (schemelen == 4 && !strncasecmp (url, "file", 4))
{
#if !defined (_WIN32) && !defined (__OS2__)
/* Leading slash => local path */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment