You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
[r3d] Check return value of avio_seek and avoid modifying state if it fails
This commit is contained in:
@@ -365,7 +365,8 @@ static int r3d_seek(AVFormatContext *s, int stream_index, int64_t sample_time, i
|
|||||||
frame_num, sample_time);
|
frame_num, sample_time);
|
||||||
|
|
||||||
if (frame_num < r3d->video_offsets_count) {
|
if (frame_num < r3d->video_offsets_count) {
|
||||||
avio_seek(s->pb, r3d->video_offsets_count, SEEK_SET);
|
if (avio_seek(s->pb, r3d->video_offsets_count, SEEK_SET) < 0)
|
||||||
|
return -1;
|
||||||
} else {
|
} else {
|
||||||
av_log(s, AV_LOG_ERROR, "could not seek to frame %d\n", frame_num);
|
av_log(s, AV_LOG_ERROR, "could not seek to frame %d\n", frame_num);
|
||||||
return -1;
|
return -1;
|
||||||
|
Reference in New Issue
Block a user