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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-02-10 17:47:39 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-02-10 17:47:39 +0300
commit5df1bb84d8fa455f337024f5d32969244215dd0a (patch)
tree65ac5f55afbf704aace6321d744a26e6f9db5fa4 /source
parent586acf21a74e836e8585c230beb56c11bd23c27e (diff)
Fix crash in copying constraints for proxy.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/constraint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c
index f0a2120f0a7..ef8b8caf831 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -4044,7 +4044,7 @@ void id_loop_constraints (ListBase *conlist, ConstraintIDFunc func, void *userda
/* helper for copy_constraints(), to be used for making sure that ID's are valid */
static void con_extern_cb(bConstraint *con, ID **idpoin, void *userdata)
{
- if (idpoin && (*idpoin)->lib)
+ if (*idpoin && (*idpoin)->lib)
id_lib_extern(*idpoin);
}