Revision: 48402
          http://brlcad.svn.sourceforge.net/brlcad/?rev=48402&view=rev
Author:   r_weiss
Date:     2012-01-11 16:58:26 +0000 (Wed, 11 Jan 2012)
Log Message:
-----------
Updated file 'nmg_bool.c' function 'nmg_booltree_leaf_tess'. Removed potential 
of referencing an uninitialized pointer. 

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

Modified: brlcad/trunk/src/librt/primitives/nmg/nmg_bool.c
===================================================================
--- brlcad/trunk/src/librt/primitives/nmg/nmg_bool.c    2012-01-11 16:58:07 UTC 
(rev 48401)
+++ brlcad/trunk/src/librt/primitives/nmg/nmg_bool.c    2012-01-11 16:58:26 UTC 
(rev 48402)
@@ -1095,7 +1095,7 @@
 nmg_booltree_leaf_tess(struct db_tree_state *tsp, const struct db_full_path 
*pathp, struct rt_db_internal *ip, genptr_t UNUSED(client_data))
 {
     struct model *m;
-    struct nmgregion *r1;
+    struct nmgregion *r1 = (struct nmgregion *)NULL;
     union tree *curtree;
     struct directory *dp;
 

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


------------------------------------------------------------------------------
Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
infrastructure or vast IT resources to deliver seamless, secure access to
virtual desktops. With this all-in-one solution, easily deploy virtual 
desktops for less than the cost of PCs and save 60% on VDI infrastructure 
costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to