[Gtkradiant] [Bug 446] Synapse Problems

gtkradiant@zerowing.idsoftware.com gtkradiant@zerowing.idsoftware.com
Tue, 19 Mar 2002 14:17:53 -0600


http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=446

hydra@hydras-world.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
           Platform|                            |All
         Resolution|                            |FIXED



------- Additional Comments From hydra@hydras-world.com  2002-03-19 14:17 -------
bleh.

someone did this:

   // start walking the interfaces
-  list<CImageTableSlot *>::iterator iSlot = mSlots.begin();
-  while (iSlot != mSlots.end())
+  list<CImageTableSlot *>::iterator iSlot;
+  for(iSlot = mSlots.begin(); iSlot != mSlots.end(); iSlot++)
   {

and I had this in

     }
+    iSlot++;
   }
   Sys_FPrintf(SYS_WRN, "WARNING: no image table for extension '%s'\n", ext);

so it went iSlot++ TWICE and missed one out.

lol

that'll teach me not to look at the diffs between cvs updates



------- You are receiving this mail because: -------
Whoops!  I have no idea!