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;