X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Ffile.c;h=ee593f8b4f99ba1e97885adc8d6808f522da6198;hb=ef579b67d0fa315345976da85dec875003bc5977;hp=a199c60baddff3bbdfeb8a0df3d7c2b19bdab59c;hpb=91e5760edbc65eac7dc20921ca983dd1f6109ba9;p=vlc diff --git a/modules/access/file.c b/modules/access/file.c index a199c60bad..ee593f8b4f 100644 --- a/modules/access/file.c +++ b/modules/access/file.c @@ -158,7 +158,6 @@ static int Open( vlc_object_t *p_this ) file_entry_t * p_file; - b_stdin = psz_name[0] == '-' && psz_name[1] == '\0'; if( !b_stdin ) @@ -173,6 +172,18 @@ static int Open( vlc_object_t *p_this ) free( psz_name ); psz_name = psz; } +#if defined(WIN32) + else if( !strcasecmp( p_access->psz_access, "file" ) + && ('/' == psz_name[0]) && psz_name[1] + && (':' == psz_name[2]) && ('/' == psz_name[3]) ) + { + /* + ** explorer can open path such as file:/C:/ or file:///C:/... + ** hence remove leading / if found + */ + ++psz_name; + } +#endif #ifdef HAVE_SYS_STAT_H psz = ToLocale( psz_name );