Commit aa765201 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Memory leak (CID#266)

parent 8ccbbab4
...@@ -352,10 +352,11 @@ void PlaylistListNode( intf_thread_t *p_intf, playlist_t *p_pl, ...@@ -352,10 +352,11 @@ void PlaylistListNode( intf_thread_t *p_intf, playlist_t *p_pl,
{ {
char value[512]; char value[512];
char *psz; char *psz;
mvar_t *itm = mvar_New( name, "set" );
playlist_item_t * p_item = playlist_CurrentPlayingItem( p_pl ); playlist_item_t * p_item = playlist_CurrentPlayingItem( p_pl );
if( !p_item || !p_item->p_input ) if( !p_item || !p_item->p_input )
return; return;
mvar_t *itm = mvar_New( name, "set" );
if( p_item->p_input->i_id == p_node->p_input->i_id ) if( p_item->p_input->i_id == p_node->p_input->i_id )
mvar_AppendNewVar( itm, "current", "1" ); mvar_AppendNewVar( itm, "current", "1" );
else else
......
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