Revision: 54428
          http://brlcad.svn.sourceforge.net/brlcad/?rev=54428&view=rev
Author:   caen23
Date:     2013-02-15 21:52:10 +0000 (Fri, 15 Feb 2013)
Log Message:
-----------
Fix warning about variable used uninitialized

Modified Paths:
--------------
    brlcad/trunk/src/mged/cmd.c

Modified: brlcad/trunk/src/mged/cmd.c
===================================================================
--- brlcad/trunk/src/mged/cmd.c 2013-02-15 21:51:33 UTC (rev 54427)
+++ brlcad/trunk/src/mged/cmd.c 2013-02-15 21:52:10 UTC (rev 54428)
@@ -2046,7 +2046,7 @@
 int
 cmd_draw(ClientData UNUSED(clientData), Tcl_Interp *UNUSED(interpreter), int 
argc, const char *argv[])
 {
-    struct ged_view *gvp;
+    struct ged_view *gvp = NULL;
 
     if (gedp)
        gvp = gedp->ged_gvp;

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


------------------------------------------------------------------------------
The Go Parallel Website, sponsored by Intel - in partnership with Geeknet, 
is your hub for all things parallel software development, from weekly thought 
leadership blogs to news, videos, case studies, tutorials, tech docs, 
whitepapers, evaluation guides, and opinion stories. Check out the most 
recent posts - join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to