From 5faf168940d6a9787552637c260b18329453bda3 Mon Sep 17 00:00:00 2001 From: Joakim Plate Date: Thu, 29 May 2008 09:50:17 +0000 Subject: [PATCH] Check return of url_fseek in mpeg timestamp reading code. Patch by Joakim elupus ecce se Originally committed as revision 13527 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mpeg.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index 3f508dcdd..ce58e1046 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -557,7 +557,9 @@ static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index, #ifdef DEBUG_SEEK printf("read_dts: pos=0x%"PRIx64" next=%d -> ", pos, find_next); #endif - url_fseek(s->pb, pos, SEEK_SET); + if (url_fseek(s->pb, pos, SEEK_SET) < 0) + return AV_NOPTS_VALUE; + for(;;) { len = mpegps_read_pes_header(s, &pos, &startcode, &pts, &dts); if (len < 0) { -- 2.11.0