From b5bfb9f9de911846c43b52a7469b3cb413055492 Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris Date: Thu, 25 Jan 2007 15:23:22 +0000 Subject: [PATCH] Silence GCC when incorrectly complaining that the "line" variable could be used without having been initialized. Originally committed as revision 7711 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/snow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/snow.c b/libavcodec/snow.c index ed21c86..19bec9c 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -3547,7 +3547,7 @@ static void correlate_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand // START_TIMER - DWTELEM * line; + DWTELEM * line=0; // silence silly "could be used without having been initialized" warning DWTELEM * prev; if (start_y != 0) -- 2.7.4