Commit d8a06f64 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

libvlc_media_new_path: allow UNC paths

parent 7dc31179
...@@ -313,7 +313,7 @@ libvlc_media_t *libvlc_media_new_location( libvlc_instance_t *p_instance, ...@@ -313,7 +313,7 @@ libvlc_media_t *libvlc_media_new_location( libvlc_instance_t *p_instance,
libvlc_media_t *libvlc_media_new_path( libvlc_instance_t *p_instance, libvlc_media_t *libvlc_media_new_path( libvlc_instance_t *p_instance,
const char *path ) const char *path )
{ {
char *mrl = vlc_path2uri( path, "file" ); char *mrl = vlc_path2uri( path, NULL );
if( unlikely(mrl == NULL) ) if( unlikely(mrl == NULL) )
{ {
libvlc_printerr( "Not enough memory" ); libvlc_printerr( "Not enough memory" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment