Commit c5c06b64 authored by Rémi Duraffort's avatar Rémi Duraffort

Merge branch '1.0-bugfix'

Conflicts:

	src/input/input.c
parents ca07b0f9 622c64a1
......@@ -348,11 +348,10 @@ static void SyslogPrint( const msg_item_t *p_msg )
int i_priority = i_prio[p_msg->i_type];
if( p_msg->psz_header )
syslog( i_priority, "%s%s %s: %s", p_msg->psz_header,
ppsz_type[p_msg->i_type],
p_msg->psz_module, p_msg->psz_msg );
syslog( i_priority, "%s %s%s%s", p_msg->psz_header, p_msg->psz_module,
ppsz_type[p_msg->i_type], p_msg->psz_msg );
else
syslog( i_priority, "%s%s: %s", p_msg->psz_module,
syslog( i_priority, "%s%s%s", p_msg->psz_module,
ppsz_type[p_msg->i_type], p_msg->psz_msg );
}
......
......@@ -1138,7 +1138,6 @@ static void InitPrograms( input_thread_t * p_input )
{
demux_Control( p_input->p->input.p_demux, DEMUX_SET_GROUP, -1,
val.p_list );
var_FreeList( &val, NULL );
}
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