From 524943fca3db7180f2afac704e0ac4b6d5bd6755 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 12 Jun 2019 12:47:01 +0200 Subject: Fix T65750: Masking crash with Add Feather Vertex and Slide --- source/blender/editors/mask/mask_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/mask') 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; -- cgit v1.2.3