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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-12-02 02:40:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-02 02:40:21 +0300
commit024b0f92d52cc2a6851d1b58aa68c58a644c4cb4 (patch)
tree93368afc8fbb1ced4c2c17d7d538d524cc6dc3b8 /source
parent3e214bd72c537067f8e96e08d9ac0653ba7a4b77 (diff)
fixed crash with rigid body constraints not having their child pointer read correctly.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/constraint.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c
index f15e0bc3144..c1a6200bf60 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -2996,6 +2996,7 @@ static void rbj_id_looper (bConstraint *con, ConstraintIDFunc func, void *userda
/* target only */
func(con, (ID**)&data->tar, userdata);
+ func(con, (ID**)&data->child, userdata);
}
static int rbj_get_tars (bConstraint *con, ListBase *list)