mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
[tmv] Check return value of avio_seek and avoid modifying state if it fails
This commit is contained in:
parent
425907809b
commit
fc12f54ea9
@ -173,7 +173,8 @@ static int tmv_read_seek(AVFormatContext *s, int stream_index,
|
||||
pos = timestamp *
|
||||
(tmv->audio_chunk_size + tmv->video_chunk_size + tmv->padding);
|
||||
|
||||
avio_seek(s->pb, pos + TMV_HEADER_SIZE, SEEK_SET);
|
||||
if (avio_seek(s->pb, pos + TMV_HEADER_SIZE, SEEK_SET) < 0)
|
||||
return -1;
|
||||
tmv->stream_index = 0;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user