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:
authorBenoit Bolsee <benoit.bolsee@online.be>2009-11-23 01:42:57 +0300
committerBenoit Bolsee <benoit.bolsee@online.be>2009-11-23 01:42:57 +0300
commitd83b251486346e8a094e1a81c186ca98e2e88d0f (patch)
tree40723a94044cd0182fddca51b58211adb753ef01 /source/blender/blenkernel/intern/action.c
parent042f52b1623c66aaff24def6bcc01a3f48a22646 (diff)
Repair display of iTaSC IK constraint. Fix crash in GE with high priority action overwriting low priority action.
Diffstat (limited to 'source/blender/blenkernel/intern/action.c')
-rw-r--r--source/blender/blenkernel/intern/action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/action.c b/source/blender/blenkernel/intern/action.c
index b359ab6ee87..1e5cb364a95 100644
--- a/source/blender/blenkernel/intern/action.c
+++ b/source/blender/blenkernel/intern/action.c
@@ -629,7 +629,7 @@ static void copy_pose_channel_data(bPoseChannel *pchan, const bPoseChannel *chan
pchan->flag= chan->flag;
con= chan->constraints.first;
- for(pcon= pchan->constraints.first; pcon; pcon= pcon->next, con= con->next) {
+ for(pcon= pchan->constraints.first; pcon && con; pcon= pcon->next, con= con->next) {
pcon->enforce= con->enforce;
pcon->headtail= con->headtail;
}