Revision: 42129
          http://brlcad.svn.sourceforge.net/brlcad/?rev=42129&view=rev
Author:   brlcad
Date:     2011-01-12 04:16:57 +0000 (Wed, 12 Jan 2011)

Log Message:
-----------
off-by-one copypaste typo.  2, not k.

Modified Paths:
--------------
    brlcad/trunk/src/librt/primitives/bot/bot.c

Modified: brlcad/trunk/src/librt/primitives/bot/bot.c
===================================================================
--- brlcad/trunk/src/librt/primitives/bot/bot.c 2011-01-12 03:33:42 UTC (rev 
42128)
+++ brlcad/trunk/src/librt/primitives/bot/bot.c 2011-01-12 04:16:57 UTC (rev 
42129)
@@ -4265,7 +4265,7 @@
            vect_t a, b;
            vect_t inv_dir;
 
-           if (bot->faces[i*3+k] < 0 || (size_t)bot->faces[i*3+2] > 
bot->num_vertices)
+           if (bot->faces[i*3+2] < 0 || (size_t)bot->faces[i*3+2] > 
bot->num_vertices)
                continue; /* sanity */
 
            VSUB2(a, &bot->vertices[bot->faces[i*3+1]*3], 
&bot->vertices[bot->faces[i*3]*3]);


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to