From a5bd9cbb9353c59bc88db5a3f3b2fb754530cc6c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 3 Apr 2013 03:25:26 +0000 Subject: fix [#34847] Box selecting shape keys of a mask causes crash --- source/blender/editors/space_action/action_select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_action') diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c index b6d2d31f0ad..eb755e162a3 100644 --- a/source/blender/editors/space_action/action_select.c +++ b/source/blender/editors/space_action/action_select.c @@ -277,7 +277,7 @@ static void borderselect_action(bAnimContext *ac, rcti rect, short mode, short s Mask *mask = ale->data; MaskLayer *masklay; for (masklay = mask->masklayers.first; masklay; masklay = masklay->next) { - ED_masklayer_frames_select_border(ale->data, rectf.xmin, rectf.xmax, selectmode); + ED_masklayer_frames_select_border(masklay, rectf.xmin, rectf.xmax, selectmode); } break; } -- cgit v1.2.3