Commit 01627875 authored by bcoudurier's avatar bcoudurier

use FFMIN

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10848 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b4b81c16
......@@ -181,8 +181,7 @@ static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
a.size -= 8;
if(a.size < 0)
break;
if (a.size > atom.size - total_size)
a.size = atom.size - total_size;
a.size = FFMIN(a.size, atom.size - total_size);
for (i = 0; c->parse_table[i].type != 0L
&& c->parse_table[i].type != a.type; i++)
......
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