Revision: 3693
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3693&view=rev
Author:   mdboom
Date:     2007-08-09 08:13:50 -0700 (Thu, 09 Aug 2007)

Log Message:
-----------
Remove "variable may be used uninitialized in this function" warnings.

Modified Paths:
--------------
    trunk/matplotlib/agg23/include/agg_conv_curve.h

Modified: trunk/matplotlib/agg23/include/agg_conv_curve.h
===================================================================
--- trunk/matplotlib/agg23/include/agg_conv_curve.h     2007-08-09 15:13:12 UTC 
(rev 3692)
+++ trunk/matplotlib/agg23/include/agg_conv_curve.h     2007-08-09 15:13:50 UTC 
(rev 3693)
@@ -117,10 +117,10 @@
             return path_cmd_line_to;
         }
 
-        double ct2_x;
-        double ct2_y;
-        double end_x;
-        double end_y;
+        double ct2_x = 0;
+        double ct2_y = 0;
+        double end_x = 0;
+        double end_y = 0;
 
         unsigned cmd = m_source->vertex(x, y);
         switch(cmd)


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

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to