Commit eec1f613 authored by Rafaël Carré's avatar Rafaël Carré

xspf writer: forget to increment the source pointer in [22665], that would...

xspf writer: forget to increment the source pointer in [22665], that would result in file://file://file:///path/to/input entries in ml.xspf
parent fee7c618
...@@ -306,6 +306,7 @@ static char *assertUTF8URI( char *psz_name ) ...@@ -306,6 +306,7 @@ static char *assertUTF8URI( char *psz_name )
i_delim++; /* skip the ':' */ i_delim++; /* skip the ':' */
strncpy( psz_ret, psz_s, i_delim ); strncpy( psz_ret, psz_s, i_delim );
psz_d = psz_ret + i_delim; psz_d = psz_ret + i_delim;
psz_s += i_delim;
if( !strncmp( psz_s, "file://", 7 ) ) if( !strncmp( psz_s, "file://", 7 ) )
b_uri_is_file = VLC_TRUE; b_uri_is_file = VLC_TRUE;
......
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