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>2016-05-11 18:43:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-05-11 18:43:56 +0300
commit8dea74bb4fb51ba5e6ece6c4e01a223f3aea289b (patch)
tree157e1eaf6e9f9c8b6648bcae7313245ed7efd4e5 /source/blender/editors/transform
parent725a088ef9fce540069b19e9b1346c3d04056f8b (diff)
error in last commit
Diffstat (limited to 'source/blender/editors/transform')
-rw-r--r--source/blender/editors/transform/transform_snap_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_snap_object.c b/source/blender/editors/transform/transform_snap_object.c
index 2d7629604b1..62ca4e515a5 100644
--- a/source/blender/editors/transform/transform_snap_object.c
+++ b/source/blender/editors/transform/transform_snap_object.c
@@ -786,7 +786,7 @@ static bool snapDerivedMesh(
/* the tree is owned by the DM and may have been freed since we last used! */
if (treedata && treedata->tree) {
- if (treedata->cached && !bvhcache_has_tree(&dm->bvhCache, treedata->tree)) {
+ if (treedata->cached && !bvhcache_has_tree(dm->bvhCache, treedata->tree)) {
free_bvhtree_from_mesh(treedata);
}
}