On 02/03/2012 02:13 PM, Paul B Mahol wrote: > From: Joakim Plate <[email protected]> > > Signed-off-by: Paul B Mahol <[email protected]> > --- > libavformat/tmv.c | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/libavformat/tmv.c b/libavformat/tmv.c > index 0f8ab59..8a96b72 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; > }
lgtm. -Justin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
