[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [37180] branches/soc-2011-onion: Revision: 29783

Jason Wilkins Jason.A.Wilkins at gmail.com
Sat Jun 4 18:08:16 CEST 2011


Revision: 37180
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=37180
Author:   jwilkins
Date:     2011-06-04 16:08:16 +0000 (Sat, 04 Jun 2011)
Log Message:
-----------
Revision: 29783
Author: nicholasbishop
Date: 10:06:59 PM, Monday, June 28, 2010
Message:
Fixed uninitialized variable.

Modified Paths:
--------------
    branches/soc-2011-onion/source/blender/editors/sculpt_paint/sculpt_undo.c

Property Changed:
----------------
    branches/soc-2011-onion/


Property changes on: branches/soc-2011-onion
___________________________________________________________________
Modified: svn:mergeinfo
   - /branches/soc-2010-jwilkins:28499-37009
/branches/soc-2010-nicolasbishop:28448-29585,29596,29662-29663,29779
/trunk/blender:36833-37054
   + /branches/soc-2010-jwilkins:28499-37009
/branches/soc-2010-nicolasbishop:28448-29585,29596,29662-29663,29779,29783
/trunk/blender:36833-37054

Modified: branches/soc-2011-onion/source/blender/editors/sculpt_paint/sculpt_undo.c
===================================================================
--- branches/soc-2011-onion/source/blender/editors/sculpt_paint/sculpt_undo.c	2011-06-04 16:04:31 UTC (rev 37179)
+++ branches/soc-2011-onion/source/blender/editors/sculpt_paint/sculpt_undo.c	2011-06-04 16:08:16 UTC (rev 37180)
@@ -183,7 +183,7 @@
 		else if(unode->maxgrid && dm->getGridData) {
 			/* multires restore */
 			DMGridData **grids, *grid;
-			float (*co)[3], *pmask;
+			float (*co)[3], *pmask = NULL;
 			int gridsize;
 			struct GridKey *gridkey;
 




More information about the Bf-blender-cvs mailing list