Commit 2c3b8946 authored by Ilkka Ollakka's avatar Ilkka Ollakka

taglib: only try to read local files

parent b0247e59
...@@ -335,6 +335,8 @@ static int ReadMeta( vlc_object_t* p_this) ...@@ -335,6 +335,8 @@ static int ReadMeta( vlc_object_t* p_this)
p_demux_meta->p_meta = NULL; p_demux_meta->p_meta = NULL;
if( !psz_path ) if( !psz_path )
return VLC_ENOMEM; return VLC_ENOMEM;
if( strncmp( p_demux->psz_access, "file", strlen("file") ) )
return VLC_EGENERIC;
#if defined(WIN32) || defined (UNDER_CE) #if defined(WIN32) || defined (UNDER_CE)
......
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