Commit 72990e3f authored by Laurent Aimar's avatar Laurent Aimar Committed by Derk-Jan Hartman

Do not skip non finite size element in matroska.

It seems to create an infinite loop.
(cherry picked from commit a1fa3487)
Signed-off-by: default avatarDerk-Jan Hartman <hartman@videolan.org>
parent 2ff9af5e
......@@ -160,7 +160,9 @@ matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( demux_t *p_demux, EbmlS
p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFL);
}
else
p_l0 = p_l0->SkipData(*p_estream, KaxSegment_Context);
{
p_l0 = NULL;
}
}
if ( !b_keep_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