From 7b374c9ff2a12243222e594df641906f2e2b0cd6 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Fri, 2 Apr 2010 14:58:55 +0000 Subject: Another uninitialized value. See http://tranquillity.ath.cx/clang/2010-03-30-1/report-e6KUTb.html#EndPath Originally committed as revision 22783 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rmdec.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavformat/rmdec.c') diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index ea9732544e..b8abcfc0b1 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -860,6 +860,7 @@ static int rm_read_packet(AVFormatContext *s, AVPacket *pkt) len = !ast->audio_framesize ? RAW_PACKET_SIZE : ast->coded_framesize * ast->sub_packet_h / 2; flags = (seq++ == 1) ? 2 : 0; + pos = url_ftell(s->pb); } else { len=sync(s, ×tamp, &flags, &i, &pos); if (len > 0) -- cgit v1.2.3