Revision: 52527
          http://brlcad.svn.sourceforge.net/brlcad/?rev=52527&view=rev
Author:   brlcad
Date:     2012-09-25 16:01:07 +0000 (Tue, 25 Sep 2012)
Log Message:
-----------
quell may be used uninitialized

Modified Paths:
--------------
    brlcad/trunk/src/libged/bot_fuse.c

Modified: brlcad/trunk/src/libged/bot_fuse.c
===================================================================
--- brlcad/trunk/src/libged/bot_fuse.c  2012-09-25 15:19:52 UTC (rev 52526)
+++ brlcad/trunk/src/libged/bot_fuse.c  2012-09-25 16:01:07 UTC (rev 52527)
@@ -39,21 +39,21 @@
 static size_t
 show_dangling_edges(struct ged *gedp, const uint32_t *magic_p, const char 
*name, int out_type)
 {
-    struct loopuse *lu;
-    struct edgeuse *eu;
+    FILE *plotfp = NULL;
+    const char *manifolds = NULL;
     const struct edgeuse *eur;
-    struct faceuse *newfu;
-    struct bu_ptbl faces;
-    struct face *fp;
-    struct faceuse *fu, *fu1, *fu2;
     int done;
-    const char *manifolds = NULL;
-    struct bn_vlblock *vbp;
-    struct bu_list *vhead;
     point_t pt1, pt2;
     size_t i, cnt;
-    FILE *plotfp = NULL;
+    struct bn_vlblock *vbp = NULL;
+    struct bu_list *vhead = NULL;
+    struct bu_ptbl faces;
     struct bu_vls plot_file_name = BU_VLS_INIT_ZERO;
+    struct edgeuse *eu = NULL;
+    struct face *fp = NULL;
+    struct faceuse *fu, *fu1, *fu2;
+    struct faceuse *newfu = NULL;
+    struct loopuse *lu = NULL;
 
     /* out_type: 0 = none, 1 = show, 2 = plot */
     if (out_type < 0 || out_type > 2) {

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


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to