From: Martin Storsjö Date: Tue, 15 Sep 2009 13:09:34 +0000 (+0000) Subject: Init i to 0 (10l fix). X-Git-Tag: android-x86-4.4-r1~25384 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ff19d438dc6950a4fd6e1004b331c1aca4236c58;p=android-x86%2Fexternal-ffmpeg.git Init i to 0 (10l fix). Patch by Martin Storsjö / martin von martin aus st Originally committed as revision 19855 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/tools/probetest.c b/tools/probetest.c index a49bb41454..8ff77a45fb 100644 --- a/tools/probetest.c +++ b/tools/probetest.c @@ -29,7 +29,7 @@ static int failures=0; static void probe(AVProbeData *pd, int type, int p, int size) { - int i; + int i = 0; AVInputFormat *fmt; for(fmt = first_iformat; fmt != NULL; fmt = fmt->next) {