]> git.sesse.net Git - ffmpeg/commitdiff
Init i to 0 (10l fix).
authorMartin Storsjö <martin@martin.st>
Tue, 15 Sep 2009 13:09:34 +0000 (13:09 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 15 Sep 2009 13:09:34 +0000 (13:09 +0000)
Patch by Martin Storsjö / martin von martin aus st

Originally committed as revision 19855 to svn://svn.ffmpeg.org/ffmpeg/trunk

tools/probetest.c

index a49bb414548f8f2bfce1f64a1cd02bb7d03b1d12..8ff77a45fb75490fce48a5c3b592f8b8b677c65c 100644 (file)
@@ -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) {