Commit 34c421ef authored by bcoudurier's avatar bcoudurier

cosmetics, useless braces

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12606 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ec07a85c
...@@ -223,9 +223,8 @@ static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) ...@@ -223,9 +223,8 @@ static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
total_size += a.size; total_size += a.size;
} }
if (!err && total_size < atom.size && atom.size < 0x7ffff) { if (!err && total_size < atom.size && atom.size < 0x7ffff)
url_fskip(pb, atom.size - total_size); url_fskip(pb, atom.size - total_size);
}
return err; return err;
} }
......
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