[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [58796] branches/soc-2013-depsgraph_mt/ source/blender/blenkernel/intern/lattice.c: Fix typo which lead to crash when applying lattice modifier

Sergey Sharybin sergey.vfx at gmail.com
Thu Aug 1 00:37:54 CEST 2013


Revision: 58796
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58796
Author:   nazgul
Date:     2013-07-31 22:37:54 +0000 (Wed, 31 Jul 2013)
Log Message:
-----------
Fix typo which lead to crash when applying lattice modifier

Modified Paths:
--------------
    branches/soc-2013-depsgraph_mt/source/blender/blenkernel/intern/lattice.c

Modified: branches/soc-2013-depsgraph_mt/source/blender/blenkernel/intern/lattice.c
===================================================================
--- branches/soc-2013-depsgraph_mt/source/blender/blenkernel/intern/lattice.c	2013-07-31 22:34:58 UTC (rev 58795)
+++ branches/soc-2013-depsgraph_mt/source/blender/blenkernel/intern/lattice.c	2013-07-31 22:37:54 UTC (rev 58796)
@@ -370,7 +370,7 @@
 
 	lattice_deform_data = MEM_mallocN(sizeof(LatticeDeformData), "Lattice Deform Data");
 	lattice_deform_data->latticedata = latticedata;
-	lattice_deform_data->object = ob;
+	lattice_deform_data->object = oblatt;
 	copy_m4_m4(lattice_deform_data->latmat, latmat);
 
 	return lattice_deform_data;




More information about the Bf-blender-cvs mailing list