From b65933e7b313c5dd857280dd5cc4fb9c44e0e83d Mon Sep 17 00:00:00 2001 From: Bogdan Nagirniak Date: Mon, 19 Mar 2018 22:12:55 +0100 Subject: [PATCH] Fix T54019: copying and linking bugs with custom ID pointer properties. --- source/blender/blenloader/intern/readfile.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index e1059a50412..723d7747a04 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -9211,15 +9211,15 @@ static void expand_nodetree(FileData *fd, Main *mainvar, bNodeTree *ntree) expand_idprops(fd, mainvar, node->prop); for (sock = node->inputs.first; sock; sock = sock->next) - expand_doit(fd, mainvar, sock->prop); + expand_idprops(fd, mainvar, sock->prop); for (sock = node->outputs.first; sock; sock = sock->next) - expand_doit(fd, mainvar, sock->prop); + expand_idprops(fd, mainvar, sock->prop); } for (sock = ntree->inputs.first; sock; sock = sock->next) - expand_doit(fd, mainvar, sock->prop); + expand_idprops(fd, mainvar, sock->prop); for (sock = ntree->outputs.first; sock; sock = sock->next) - expand_doit(fd, mainvar, sock->prop); + expand_idprops(fd, mainvar, sock->prop); } static void expand_texture(FileData *fd, Main *mainvar, Tex *tex)