Skip to content
Snippets Groups Projects
Commit 21f056e8 authored by Daniel Tisza's avatar Daniel Tisza Committed by Rémi Denis-Courmont
Browse files

Add entity encoding for input options when outputting an xml file.


Entity encoding was missing (for options) in generation of an xspf playlist.
On the reading side the entity decoding is all fine.

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 77dd16ba
No related branches found
No related tags found
No related merge requests found
......@@ -208,10 +208,18 @@ xspfexportitem_end:
for( int i = 0; i < p_item->p_input->i_options; i++ )
{
fprintf( p_file, "\t\t\t\t<vlc:option>%s</vlc:option>\n",
p_item->p_input->ppsz_options[i][0] == ':' ?
p_item->p_input->ppsz_options[i] + 1 :
p_item->p_input->ppsz_options[i] );
char* psz_src = p_item->p_input->ppsz_options[i];
char* psz_ret = NULL;
if ( psz_src[0] == ':' )
psz_src++;
psz_ret = convert_xml_special_chars( psz_src );
if ( psz_ret == NULL )
continue;
fprintf( p_file, "\t\t\t\t<vlc:option>%s</vlc:option>\n", psz_ret );
free( psz_ret );
}
fputs( "\t\t\t</extension>\n", p_file );
fputs( "\t\t</track>\n", p_file );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment