Commit 9839f126 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: ogg: clear reordering struct on early stream deletion

parent 28787e22
...@@ -2140,6 +2140,7 @@ static void Ogg_LogicalStreamDelete( demux_t *p_demux, logical_stream_t *p_strea ...@@ -2140,6 +2140,7 @@ static void Ogg_LogicalStreamDelete( demux_t *p_demux, logical_stream_t *p_strea
block_ChainRelease( p_stream->p_preparse_block ); block_ChainRelease( p_stream->p_preparse_block );
p_stream->p_preparse_block = NULL; p_stream->p_preparse_block = NULL;
} }
free( p_stream->p_prepcr_blocks );
free( p_stream ); free( p_stream );
} }
......
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