[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [34154] trunk/blender/source/blender/ modifiers/intern/MOD_hook.c: bugfix [#25528] lack of update and crash using hook modifier.

Campbell Barton ideasman42 at gmail.com
Fri Jan 7 12:48:36 CET 2011


Revision: 34154
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=34154
Author:   campbellbarton
Date:     2011-01-07 11:48:35 +0000 (Fri, 07 Jan 2011)
Log Message:
-----------
bugfix [#25528] lack of update and crash using hook modifier.

Modified Paths:
--------------
    trunk/blender/source/blender/modifiers/intern/MOD_hook.c

Modified: trunk/blender/source/blender/modifiers/intern/MOD_hook.c
===================================================================
--- trunk/blender/source/blender/modifiers/intern/MOD_hook.c	2011-01-07 11:38:28 UTC (rev 34153)
+++ trunk/blender/source/blender/modifiers/intern/MOD_hook.c	2011-01-07 11:48:35 UTC (rev 34154)
@@ -268,7 +268,7 @@
 
 	if(!derivedData) dm = CDDM_from_editmesh(editData, ob->data);
 
-	deformVerts(md, ob, derivedData, vertexCos, numVerts, 0, 0);
+	deformVerts(md, ob, dm, vertexCos, numVerts, 0, 0);
 
 	if(!derivedData) dm->release(dm);
 }




More information about the Bf-blender-cvs mailing list