mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
move atom size check before parsing function search
Originally committed as revision 8546 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a097e559b2
commit
11979c460c
@ -244,15 +244,14 @@ static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
|
||||
if (a.size <= 8)
|
||||
break;
|
||||
}
|
||||
a.size -= 8;
|
||||
if(a.size < 0 || a.size > atom.size - total_size)
|
||||
break;
|
||||
|
||||
for (i = 0; c->parse_table[i].type != 0L
|
||||
&& c->parse_table[i].type != a.type; i++)
|
||||
/* empty */;
|
||||
|
||||
a.size -= 8;
|
||||
|
||||
if(a.size < 0 || a.size > atom.size - total_size)
|
||||
break;
|
||||
|
||||
if (c->parse_table[i].type == 0) { /* skip leaf atoms data */
|
||||
url_fskip(pb, a.size);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user