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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2016-12-08 01:01:51 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2016-12-08 01:04:27 +0300
commit62a2ed97bacc3bc891a0ea3d3ab730d8253ab366 (patch)
tree17f34091a6798ba6d5e4fcb975f48eacbee05d4a /source/blender/blenkernel/intern
parenta63108efb195ab2cf751875f26ce2293cc158e47 (diff)
Fix crash when opening a Blender file containing Alembic data.
Was also affecting object linking.
Diffstat (limited to 'source/blender/blenkernel/intern')
-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 9d4de30aa2c..cb74dbcd8d1 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -4404,6 +4404,7 @@ static void transformcache_free(bConstraint *con)
#ifdef WITH_ALEMBIC
CacheReader_free(data->reader);
#endif
+ data->reader = NULL;
}
}