mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
bink: check vst->index_entries before using it
This fixes a NULL pointer dereference if vst->duration is 0.
The problem was introduced in commit 0588acaf
.
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4d98015dcf
commit
86d00ede4f
@ -194,7 +194,10 @@ static int read_header(AVFormatContext *s)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
avio_seek(pb, vst->index_entries[0].pos, SEEK_SET);
|
if (vst->index_entries)
|
||||||
|
avio_seek(pb, vst->index_entries[0].pos, SEEK_SET);
|
||||||
|
else
|
||||||
|
avio_skip(pb, 4);
|
||||||
|
|
||||||
bink->current_track = -1;
|
bink->current_track = -1;
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user