From 534573f6b9dc5e637bea18de3edcd0f22593666a Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 30 Jan 2019 11:46:49 +0100 Subject: Fix T60957: ASSERT when reloading double-linked file. Kind of funny to see that this has been missing presumably since the first version of library linking in Blender, and only gets noticed now. Then again, that was not really a critical issue, iirc write code ensures all libraries directly used get properly written, even if flags are incorrect. --- source/blender/blenkernel/intern/library.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/library.c b/source/blender/blenkernel/intern/library.c index a933bd939e8..1db36b459fe 100644 --- a/source/blender/blenkernel/intern/library.c +++ b/source/blender/blenkernel/intern/library.c @@ -168,6 +168,7 @@ void id_lib_extern(ID *id) if (id->tag & LIB_TAG_INDIRECT) { id->tag &= ~LIB_TAG_INDIRECT; id->tag |= LIB_TAG_EXTERN; + id->lib->parent = NULL; } } } -- cgit v1.2.3