diff options
author | Joakim Plate <elupus@ecce.se> | 2011-09-14 19:23:39 +0200 |
---|---|---|
committer | Joakim Plate <elupus@ecce.se> | 2011-09-14 19:51:07 +0200 |
commit | 598cc84fbf137df57b5e273484083606583ec3e8 (patch) | |
tree | 05ffc667502e9b82c938eb1b88fb8e2e83d7922f | |
parent | d2a847c203b5876e2bb5f0bc216b0af625f077a2 (diff) | |
download | ffmpeg-598cc84fbf137df57b5e273484083606583ec3e8.tar.gz |
[bink] Check return value of avio_seek and avoid modifying state if it fails
-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 a54765ad18..3cd82ac42f 100644 --- a/libavformat/bink.c +++ b/libavformat/bink.c @@ -256,7 +256,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; |