diff options
author | jsjtxietian <jsjtxietian@outlook.com> | 2024-04-09 12:37:32 +0800 |
---|---|---|
committer | jsjtxietian <jsjtxietian@outlook.com> | 2024-04-09 12:37:32 +0800 |
commit | 7d4bdcf80ad34ce78a0dbc837e05f084e2a42270 (patch) | |
tree | 853c63379523c56bf82c64c730ea55343099d58c /editor/editor_properties.cpp | |
parent | 9d6bdbc56e0ac99a6cc3aaed1c114a6528cb87fc (diff) | |
download | redot-engine-7d4bdcf80ad34ce78a0dbc837e05f084e2a42270.tar.gz |
Fix `_node_assign` will crash when base_node is nullptr
Diffstat (limited to 'editor/editor_properties.cpp')
-rw-r--r-- | editor/editor_properties.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index 4858fcf78f..ea364d8a0d 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -2755,7 +2755,8 @@ void EditorPropertyNodePath::_node_assign() { Variant val = get_edited_property_value(); Node *n = nullptr; if (val.get_type() == Variant::Type::NODE_PATH) { - n = get_base_node()->get_node_or_null(val); + Node *base_node = get_base_node(); + n = base_node == nullptr ? nullptr : base_node->get_node_or_null(val); } else { n = Object::cast_to<Node>(val); } |