mux/avi.c: write '\0' rather than an uninitalized byte to output file.

Fixes one, but not all of valgrinds warnings relating to this
parent c3f9f8e1
...@@ -473,6 +473,7 @@ static int Mux ( sout_mux_t *p_mux ) ...@@ -473,6 +473,7 @@ static int Mux ( sout_mux_t *p_mux )
if( p_data->i_buffer & 0x01 ) if( p_data->i_buffer & 0x01 )
{ {
p_data = block_Realloc( p_data, 0, p_data->i_buffer + 1 ); p_data = block_Realloc( p_data, 0, p_data->i_buffer + 1 );
p_data->p_buffer[ p_data->i_buffer - 1 ] = '\0';
} }
p_sys->i_movi_size += p_data->i_buffer; p_sys->i_movi_size += p_data->i_buffer;
......
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