Commit 005aff8b authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

AVI: free p_sys resources on Close (WTF?)

Close #8448
parent 89c3e35c
......@@ -222,6 +222,16 @@ static void Close( vlc_object_t * p_this )
p_hdr = avi_HeaderCreateRIFF( p_mux );
sout_AccessOutSeek( p_mux->p_access, 0 );
sout_AccessOutWrite( p_mux->p_access, p_hdr );
for( i_stream = 0; i_stream < p_sys->i_streams; i_stream++ )
{
avi_stream_t *p_stream;
p_stream = &p_sys->stream[i_stream];
free( p_stream->p_bih );
free( p_stream->p_wf );
}
free( p_sys->idx1.entry );
free( p_sys );
}
static int Control( sout_mux_t *p_mux, int i_query, va_list args )
......
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