[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55744] trunk/blender/source/blender/ editors/space_action/action_select.c: fix [#34847] Box selecting shape keys of a mask causes crash

Campbell Barton ideasman42 at gmail.com
Wed Apr 3 05:25:26 CEST 2013


Revision: 55744
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55744
Author:   campbellbarton
Date:     2013-04-03 03:25:26 +0000 (Wed, 03 Apr 2013)
Log Message:
-----------
fix [#34847] Box selecting shape keys of a mask causes crash

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_action/action_select.c

Modified: trunk/blender/source/blender/editors/space_action/action_select.c
===================================================================
--- trunk/blender/source/blender/editors/space_action/action_select.c	2013-04-03 01:36:00 UTC (rev 55743)
+++ trunk/blender/source/blender/editors/space_action/action_select.c	2013-04-03 03:25:26 UTC (rev 55744)
@@ -277,7 +277,7 @@
 					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;
 				}




More information about the Bf-blender-cvs mailing list