Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGermano Cavalcante <germano.costa@ig.com.br>2020-04-10 17:21:55 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2020-04-10 17:21:55 +0300
commitab8e7ffc6411da2bbd9cfb574b8dfcb86390c5ea (patch)
treeb3d4c3d129dc7b35811fb9f556ab217828b8db80 /source/blender/editors/space_outliner
parent9a7f5f1bb42292eeb70b4832e7883846df0cb76a (diff)
Fix T75378: Crash on clicking in the ghost icon of an appended proxy object
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_select.c2
1 files changed, 1 insertions, 1 deletions
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;