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:
authorJoshua Leung <aligorith@gmail.com>2009-03-02 03:55:10 +0300
committerJoshua Leung <aligorith@gmail.com>2009-03-02 03:55:10 +0300
commitd52212c73e12287c88036ba5e82a6cb647342012 (patch)
treea8947605fb97c2ad58617e2fe4d6724a838618c0 /source/blender/editors/animation
parent6888f540e8ebee25c94db67474c48dd7c249bdf9 (diff)
2.5 - Various animation bugfixes for samples
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/keyframes_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/keyframes_draw.c b/source/blender/editors/animation/keyframes_draw.c
index 1727ec17182..4b5ab6296b4 100644
--- a/source/blender/editors/animation/keyframes_draw.c
+++ b/source/blender/editors/animation/keyframes_draw.c
@@ -535,7 +535,7 @@ void fcurve_to_keylist(FCurve *fcu, ListBase *keys, ListBase *blocks, ActKeysInc
ActKeyBlock *ab, *ab2;
int v;
- if (fcu && fcu->totvert) {
+ if (fcu && fcu->totvert && fcu->bezt) {
/* loop through beztriples, making ActKeys and ActKeyBlocks */
bezt= fcu->bezt;