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.
This commit is contained in:
Julian Eisel 2016-03-07 11:21:01 +01:00 committed by Sergey Sharybin
parent 1e2c8ca6ea
commit c20bcba363
1 changed files with 1 additions and 1 deletions

View File

@ -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
*/