Commit 1a116993 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: mkv: fix leak

cid 1048915
parent b2379a00
......@@ -991,6 +991,12 @@ void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset, int64_t i_
if( BlockGet( block, simpleblock, &b_key_picture, &b_discardable_picture, &i_block_duration ) )
{
msg_Warn( &sys.demuxer, "cannot get block EOF?" );
while( p_first )
{
spoint *tmp = p_first;
p_first = p_first->p_next;
delete tmp;
}
return;
}
......
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