Commit 066ad092 authored by Joakim Plate's avatar Joakim Plate Committed by Justin Ruggles

tmv: Check return value of avio_seek and avoid modifying state if it fails

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarJustin Ruggles <justin.ruggles@gmail.com>
parent c7b08bc0
...@@ -174,7 +174,8 @@ static int tmv_read_seek(AVFormatContext *s, int stream_index, ...@@ -174,7 +174,8 @@ static int tmv_read_seek(AVFormatContext *s, int stream_index,
pos = timestamp * pos = timestamp *
(tmv->audio_chunk_size + tmv->video_chunk_size + tmv->padding); (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; tmv->stream_index = 0;
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment