mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
mov: detect EOF in mov_read_dref()
Avoid a near infinite loop. Issue discovered by cosminamironesei. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
4ed5ac50d3
commit
9db67bedf0
@ -416,6 +416,8 @@ static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
||||
avio_skip(pb, 16);
|
||||
|
||||
for (type = 0; type != -1 && avio_tell(pb) < next; ) {
|
||||
if (pb->eof_reached)
|
||||
return AVERROR_EOF;
|
||||
type = avio_rb16(pb);
|
||||
len = avio_rb16(pb);
|
||||
av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
|
||||
|
Loading…
Reference in New Issue
Block a user