[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33418] trunk/blender/source/blender/ blenkernel/intern/constraint.c: fixed crash with rigid body constraints not having their child pointer read correctly .

Campbell Barton ideasman42 at gmail.com
Thu Dec 2 00:40:22 CET 2010


Revision: 33418
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33418
Author:   campbellbarton
Date:     2010-12-02 00:40:21 +0100 (Thu, 02 Dec 2010)

Log Message:
-----------
fixed crash with rigid body constraints not having their child pointer read correctly.

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/constraint.c

Modified: trunk/blender/source/blender/blenkernel/intern/constraint.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/constraint.c	2010-12-01 17:47:38 UTC (rev 33417)
+++ trunk/blender/source/blender/blenkernel/intern/constraint.c	2010-12-01 23:40:21 UTC (rev 33418)
@@ -2996,6 +2996,7 @@
 	
 	/* target only */
 	func(con, (ID**)&data->tar, userdata);
+	func(con, (ID**)&data->child, userdata);
 }
 
 static int rbj_get_tars (bConstraint *con, ListBase *list)





More information about the Bf-blender-cvs mailing list