mkvparser,Block::Parse: remove incorrect assert

this path has been error checked since:
986b64b mkvparser: Add error checking in Block::Parse.

BUG=webm:1405

Change-Id: I1c17c05076455f25ab888555d71d7b27c032e9dd
This commit is contained in:
James Zern 2017-04-18 12:44:53 -07:00
parent 784fc1bb7c
commit a0d27f0d51

View File

@ -7936,7 +7936,6 @@ long Block::Parse(const Cluster* pCluster) {
pf = m_frames;
while (pf != pf_end) {
Frame& f = *pf++;
assert((pos + f.len) <= stop);
if ((pos + f.len) > stop)
return E_FILE_FORMAT_INVALID;