summaryrefslogtreecommitdiff
path: root/libavformat/tmv.c
diff options
context:
space:
mode:
authorJoakim Plate <elupus@ecce.se>2012-02-03 19:13:43 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2012-02-10 15:27:49 -0500
commit066ad0926a53ea6ee9d5cb3e348160a881145e73 (patch)
treef4d7b54649f4f8bd4aae3592b029fa0233e8e29d /libavformat/tmv.c
parentc7b08bc0a71f9e54e0d5036a8195648b41bd3933 (diff)
tmv: Check return value of avio_seek and avoid modifying state if it fails
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
Diffstat (limited to 'libavformat/tmv.c')
-rw-r--r--libavformat/tmv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/tmv.c b/libavformat/tmv.c
index 0f8ab597ad..8a96b721ab 100644
--- a/libavformat/tmv.c
+++ b/libavformat/tmv.c
@@ -174,7 +174,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;
}