Bug [#20572] Crash Blender - Gkey in Video Sequence Editor
Missing null check in durian fcurve hack (always enabled for some reasons)
This commit is contained in:
@@ -3652,7 +3652,7 @@ void seq_offset_animdata(Scene *scene, Sequence *seq, int ofs)
|
||||
char str[32];
|
||||
FCurve *fcu;
|
||||
|
||||
if(scene->adt==NULL || ofs==0)
|
||||
if(scene->adt==NULL || ofs==0 || scene->adt->action==NULL)
|
||||
return;
|
||||
|
||||
sprintf(str, "[\"%s\"]", seq->name+2);
|
||||
|
||||
Reference in New Issue
Block a user