Commit 23b2d367 authored by Rafaël Carré's avatar Rafaël Carré

gather: fix uninitialized value

parent 96a40ef2
...@@ -181,6 +181,7 @@ static sout_stream_id_sys_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt ) ...@@ -181,6 +181,7 @@ static sout_stream_id_sys_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
if( id == NULL ) if( id == NULL )
return NULL; return NULL;
es_format_Copy( &id->fmt, p_fmt ); es_format_Copy( &id->fmt, p_fmt );
id->b_streamswap = false;
id->b_used = true; id->b_used = true;
id->id = sout_StreamIdAdd( p_stream->p_next, &id->fmt ); id->id = sout_StreamIdAdd( p_stream->p_next, &id->fmt );
if( id->id == NULL ) if( id->id == NULL )
......
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