[Bf-blender-cvs] [ab8e7ffc641] master: Fix T75378: Crash on clicking in the ghost icon of an appended proxy object

Germano Cavalcante noreply at git.blender.org
Fri Apr 10 16:22:03 CEST 2020


Commit: ab8e7ffc6411da2bbd9cfb574b8dfcb86390c5ea
Author: Germano Cavalcante
Date:   Fri Apr 10 11:21:55 2020 -0300
Branches: master
https://developer.blender.org/rBab8e7ffc6411da2bbd9cfb574b8dfcb86390c5ea

Fix T75378: Crash on clicking in the ghost icon of an appended proxy object

===================================================================

M	source/blender/editors/space_outliner/outliner_select.c

===================================================================

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;



More information about the Bf-blender-cvs mailing list