[xiph-commits] r9559 - trunk/theora/lib

thomasvs at svn.xiph.org thomasvs at svn.xiph.org
Mon Jul 11 03:37:59 PDT 2005


Author: thomasvs
Date: 2005-07-11 03:37:57 -0700 (Mon, 11 Jul 2005)
New Revision: 9559

Modified:
   trunk/theora/lib/blockmap.c
Log:
fix a possibly uninitialized value

Modified: trunk/theora/lib/blockmap.c
===================================================================
--- trunk/theora/lib/blockmap.c	2005-07-11 10:20:12 UTC (rev 9558)
+++ trunk/theora/lib/blockmap.c	2005-07-11 10:37:57 UTC (rev 9559)
@@ -21,7 +21,7 @@
                             ogg_uint32_t FirstSB,
                             ogg_uint32_t FirstFrag, ogg_uint32_t HFrags,
                             ogg_uint32_t VFrags ){
-  ogg_uint32_t i, j;
+  ogg_uint32_t i, j = 0;
   ogg_uint32_t xpos;
   ogg_uint32_t ypos;
   ogg_uint32_t SBrow, SBcol;



More information about the commits mailing list