Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-01-07 14:48:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-07 14:48:35 +0300
commit03e0f28ea054923d1bb682ad8cd6ee931caea89f (patch)
tree476e8805ee46ea6f5a2e601a2c06507577ab16ea /source/blender/modifiers
parent3c6077e8ec59a2d2c74cf87ec1b54a5e168e7aa6 (diff)
bugfix [#25528] lack of update and crash using hook modifier.
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_hook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_hook.c b/source/blender/modifiers/intern/MOD_hook.c
index e29b4b456ae..9c855e4c96c 100644
--- a/source/blender/modifiers/intern/MOD_hook.c
+++ b/source/blender/modifiers/intern/MOD_hook.c
@@ -268,7 +268,7 @@ static void deformVertsEM(
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);
}