From ab8e7ffc6411da2bbd9cfb574b8dfcb86390c5ea Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Fri, 10 Apr 2020 11:21:55 -0300 Subject: [PATCH] Fix T75378: Crash on clicking in the ghost icon of an appended proxy object --- source/blender/editors/space_outliner/outliner_select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_outliner/outliner_select.c b/source/blender/editors/space_outliner/outliner_select.c index 64d86293fb7..0971d3526ad 100644 --- a/source/blender/editors/space_outliner/outliner_select.c +++ b/source/blender/editors/space_outliner/outliner_select.c @@ -308,7 +308,7 @@ static eOLDrawState tree_element_set_active_object(bContext *C, bool recursive) { TreeStoreElem *tselem = TREESTORE(te); - TreeStoreElem *parent_tselem; + TreeStoreElem *parent_tselem = NULL; Scene *sce; Base *base; Object *ob = NULL;