[FFmpeg-cvslog] r19855 - trunk/tools/probetest.c

michael subversion
Tue Sep 15 15:09:35 CEST 2009


Author: michael
Date: Tue Sep 15 15:09:34 2009
New Revision: 19855

Log:
Init i to 0 (10l fix).
Patch by Martin Storsj? / martin von martin aus st

Modified:
   trunk/tools/probetest.c

Modified: trunk/tools/probetest.c
==============================================================================
--- trunk/tools/probetest.c	Tue Sep 15 14:20:03 2009	(r19854)
+++ trunk/tools/probetest.c	Tue Sep 15 15:09:34 2009	(r19855)
@@ -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) {



More information about the ffmpeg-cvslog mailing list