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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-06-12 13:47:01 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-06-12 13:47:01 +0300
commit524943fca3db7180f2afac704e0ac4b6d5bd6755 (patch)
tree8e705b01ae723ce595a49922c71e54df41391d8a /source/blender/editors/mask
parent27441c75573874c91a4fb71da993e7c7fb306a2c (diff)
Fix T65750: Masking crash with Add Feather Vertex and Slide
Diffstat (limited to 'source/blender/editors/mask')
-rw-r--r--source/blender/editors/mask/mask_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mask/mask_ops.c b/source/blender/editors/mask/mask_ops.c
index 5a7a84dbbc8..a205f6878e3 100644
--- a/source/blender/editors/mask/mask_ops.c
+++ b/source/blender/editors/mask/mask_ops.c
@@ -288,7 +288,7 @@ bool ED_mask_feather_find_nearest(const bContext *C,
uw = NULL;
}
else {
- uw = &cur_point_eval->uw[j - 1];
+ uw = &cur_point_orig->uw[j - 1];
}
point_masklay = masklay_orig;