Commit 4e0e4d6d authored by Sam Hocevar's avatar Sam Hocevar

Merge branch 'master' of git@git.videolan.org:vlc

parents cfc98288 3b0534ea
......@@ -378,7 +378,7 @@ static vlc_bool_t parse_track_dict COMPLEX_INTERFACE
!strncmp( psz_uri, "file://localhost/", 17 ) )
{
/* remove 'localhost/' */
strcpy( psz_uri + 7, psz_uri + 17 );
memmove( psz_uri + 7, psz_uri + 17, strlen( psz_uri ) - 9 );
msg_Info( p_demux, "Adding '%s'", psz_uri );
p_new_input = input_ItemNewExt( p_playlist, psz_uri,
......
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