Commit 132b1af1 authored by Ilkka Ollakka's avatar Ilkka Ollakka

don't save xspf-playlist location, as it's not needed by vlc, and as mentioned

by xspf errata, can cause to expose your porn location. Should fix
ticket #2217
parent dafe4a3f
......@@ -73,14 +73,6 @@ int xspf_export_playlist( vlc_object_t *p_this )
}
free( psz_temp );
/* save location of the playlist node */
psz_temp = assertUTF8URI( p_export->psz_filename );
if( psz_temp && *psz_temp )
{
fprintf( p_export->p_file, "\t<location>%s</location>\n", psz_temp );
}
free( psz_temp );
/* export all items in a flat format */
fprintf( p_export->p_file, "\t<trackList>\n" );
i_count = 0;
......
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