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:
authorMartin Poirier <theeth@yahoo.com>2010-01-10 22:19:22 +0300
committerMartin Poirier <theeth@yahoo.com>2010-01-10 22:19:22 +0300
commit8fedb7d65f8076ae713529fe93dcd447ec2746a0 (patch)
treea85a353df260ffa7724e3f14c8ff67b9d3474b8e /source/blender/blenkernel
parentc723251cc0c2f836420040b6571b398396367b9b (diff)
Bug [#20572] Crash Blender - Gkey in Video Sequence Editor
Missing null check in durian fcurve hack (always enabled for some reasons)
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index 926f7fde14d..36c6e074d4e 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -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);