[Bf-blender-cvs] [c20bcba] blender-v2.77-release: Fix T47706: 'CTRL ALT Left Mouse' clicking on the dope sheet summary line crashes Blender

Julian Eisel noreply at git.blender.org
Fri Mar 18 12:15:07 CET 2016


Commit: c20bcba363a8e19da24dd3fd713a9a5c7ac476b6
Author: Julian Eisel
Date:   Mon Mar 7 11:21:01 2016 +0100
Branches: blender-v2.77-release
https://developer.blender.org/rBc20bcba363a8e19da24dd3fd713a9a5c7ac476b6

Fix T47706: 'CTRL ALT Left Mouse' clicking on the dope sheet summary line crashes Blender

Simple NULL-check seems fine here, working as it should now. Most likely caused by rBc4dc14b079d81.

===================================================================

M	source/blender/editors/animation/keyframes_edit.c

===================================================================

diff --git a/source/blender/editors/animation/keyframes_edit.c b/source/blender/editors/animation/keyframes_edit.c
index 676b792..08a7355 100644
--- a/source/blender/editors/animation/keyframes_edit.c
+++ b/source/blender/editors/animation/keyframes_edit.c
@@ -295,7 +295,7 @@ static short summary_keyframes_loop(KeyframeEditData *ked, bAnimContext *ac, Key
 			case ALE_FCURVE:
 			default:
 			{
-				if (ked->iterflags) {
+				if (ked && ked->iterflags) {
 					/* make backups of the current values, so that a localised fix
 					 * (e.g. NLA time remapping) can be applied to these values
 					 */




More information about the Bf-blender-cvs mailing list