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:
authorJulian Eisel <eiseljulian@gmail.com>2016-03-07 13:21:01 +0300
committerJulian Eisel <eiseljulian@gmail.com>2016-03-07 13:21:01 +0300
commit9fe977dbf00bc123e7af3d1a6370d996c33bef25 (patch)
tree9904765ccc06f11f341c58ecd277db503c633f57 /source/blender/editors/animation/keyframes_edit.c
parent19ec1bfa89f74dbda02ce62fcf9c88032840c624 (diff)
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.
Diffstat (limited to 'source/blender/editors/animation/keyframes_edit.c')
-rw-r--r--source/blender/editors/animation/keyframes_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/keyframes_edit.c b/source/blender/editors/animation/keyframes_edit.c
index 676b792e2d9..08a7355694b 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
*/