From 3d083f376b9c75f868c9687946549acd18d91959 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 7 Aug 2018 12:45:01 +1000 Subject: Fix T56255: Crash w/ collection access from Python --- source/blender/blenloader/intern/readfile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 293114c4b79..b7aeee491c5 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -6495,6 +6495,8 @@ static void direct_link_scene(FileData *fd, Scene *sce) if (sce->master_collection) { sce->master_collection = newdataadr(fd, sce->master_collection); direct_link_collection(fd, sce->master_collection); + /* Needed because this is an ID outside of Main. */ + sce->master_collection->id.py_instance = NULL; } /* insert into global old-new map for reading without UI (link_global accesses it again) */ -- cgit v1.2.3