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:
authorAntony Riakiotakis <kalast@gmail.com>2015-06-26 18:50:08 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-06-26 18:50:08 +0300
commitc58b5acefdd1b8018bcd294b60cbd8e6cf4aa14b (patch)
tree42f63b2e94ce340407179ffbdae577b108f8508f
parent79c106705acfff06508b2dc4edcb353e85df6ea6 (diff)
Fix crash on undoing after 8690ea6
Forgot to clear the mutex when reloading the scene.
-rw-r--r--source/blender/blenloader/intern/readfile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index a3d2cef02e7..9976594ad0b 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -2763,7 +2763,8 @@ static void direct_link_nodetree(FileData *fd, bNodeTree *ntree)
ntree->progress = NULL;
ntree->execdata = NULL;
-
+ ntree->duplilock = NULL;
+
ntree->adt = newdataadr(fd, ntree->adt);
direct_link_animdata(fd, ntree->adt);