diff options
author | Joakim Plate <elupus@ecce.se> | 2012-02-03 19:13:34 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-02-10 15:27:49 -0500 |
commit | 3371e89640eb519edf0ca8695f370867e55040d0 (patch) | |
tree | 743c85ca91b7a5b7b87a3572448c8095a4af532a | |
parent | dcd2b55e1a7d1f88dc893c04cc86181fc7f11cc4 (diff) | |
download | ffmpeg-3371e89640eb519edf0ca8695f370867e55040d0.tar.gz |
bink: Check return value of avio_seek and avoid modifying state if it fails
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
-rw-r--r-- | libavformat/bink.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/bink.c b/libavformat/bink.c index d6af54f96e..c1206505f3 100644 --- a/libavformat/bink.c +++ b/libavformat/bink.c @@ -257,7 +257,9 @@ static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, in return -1; /* seek to the first frame */ - avio_seek(s->pb, vst->index_entries[0].pos, SEEK_SET); + if (avio_seek(s->pb, vst->index_entries[0].pos, SEEK_SET) < 0) + return -1; + bink->video_pts = 0; memset(bink->audio_pts, 0, sizeof(bink->audio_pts)); bink->current_track = -1; |