From decae20f3662650ecb9602c0c760af275a1e7db3 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 11 Feb 2009 14:52:35 +0000 Subject: Add av_uninit macro to variable to avoid false positive warning: libavcodec/eatgv.c: In function ‘tgv_decode_frame’: libavcodec/eatgv.c:66: warning: ‘offset’ may be used uninitialized in this function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 17154 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/eatgv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/eatgv.c') diff --git a/libavcodec/eatgv.c b/libavcodec/eatgv.c index 82f78bc4ab..af34ed7d47 100644 --- a/libavcodec/eatgv.c +++ b/libavcodec/eatgv.c @@ -63,7 +63,7 @@ static av_cold int tgv_decode_init(AVCodecContext *avctx){ */ static int unpack(const uint8_t *src, const uint8_t *src_end, unsigned char *dst, int width, int height) { unsigned char *dst_end = dst + width*height; - int size,size1,size2,offset,run; + int size, size1, size2, av_uninit(offset), run; unsigned char *dst_start = dst; if (src[0] & 0x01) -- cgit v1.2.3