Commit c4e756b0 authored by Laurent Aimar's avatar Laurent Aimar

Prevent wrong es selection on invalid syntax (part of #1821)

Warn on invalid syntax.
Check malloc return values.
parent 15151cba
...@@ -88,11 +88,11 @@ static int Open( vlc_object_t *p_this ) ...@@ -88,11 +88,11 @@ static int Open( vlc_object_t *p_this )
msg_Dbg( p_stream, "creating 'duplicate'" ); msg_Dbg( p_stream, "creating 'duplicate'" );
p_sys = malloc( sizeof( sout_stream_sys_t ) ); p_sys = malloc( sizeof( sout_stream_sys_t ) );
if( !p_sys )
return VLC_ENOMEM;
p_sys->i_nb_streams = 0; TAB_INIT( p_sys->i_nb_streams, p_sys->pp_streams );
p_sys->pp_streams = NULL; TAB_INIT( p_sys->i_nb_select, p_sys->ppsz_select );
p_sys->i_nb_select = 0;
p_sys->ppsz_select = NULL;
for( p_cfg = p_stream->p_cfg; p_cfg != NULL; p_cfg = p_cfg->p_next ) for( p_cfg = p_stream->p_cfg; p_cfg != NULL; p_cfg = p_cfg->p_next )
{ {
...@@ -114,10 +114,24 @@ static int Open( vlc_object_t *p_this ) ...@@ -114,10 +114,24 @@ static int Open( vlc_object_t *p_this )
char *psz = p_cfg->psz_value; char *psz = p_cfg->psz_value;
if( p_sys->i_nb_select > 0 && psz && *psz ) if( p_sys->i_nb_select > 0 && psz && *psz )
{ {
msg_Dbg( p_stream, " * apply selection %s", psz ); char **ppsz_select = &p_sys->ppsz_select[p_sys->i_nb_select - 1];
p_sys->ppsz_select[p_sys->i_nb_select - 1] = strdup( psz );
if( *ppsz_select )
{
msg_Err( p_stream, " * ignore selection `%s' (it already has `%s')",
psz, *ppsz_select );
}
else
{
msg_Dbg( p_stream, " * apply selection `%s'", psz );
*ppsz_select = strdup( psz );
}
} }
} }
else
{
msg_Err( p_stream, " * ignore unknown option `%s'", p_cfg->psz_name );
}
} }
if( p_sys->i_nb_streams == 0 ) if( p_sys->i_nb_streams == 0 )
...@@ -169,6 +183,9 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt ) ...@@ -169,6 +183,9 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
int i_stream, i_valid_streams = 0; int i_stream, i_valid_streams = 0;
id = malloc( sizeof( sout_stream_id_t ) ); id = malloc( sizeof( sout_stream_id_t ) );
if( !id )
return NULL;
id->i_nb_ids = 0; id->i_nb_ids = 0;
id->pp_ids = NULL; id->pp_ids = NULL;
...@@ -261,8 +278,9 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id, ...@@ -261,8 +278,9 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
{ {
p_dup = block_Duplicate( p_buffer ); p_dup = block_Duplicate( p_buffer );
p_dup_stream->pf_send( p_dup_stream, id->pp_ids[i_stream], if( p_dup )
p_dup ); p_dup_stream->pf_send( p_dup_stream, id->pp_ids[i_stream],
p_dup );
} }
} }
......
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