summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties.cpp
diff options
context:
space:
mode:
authorjsjtxietian <jsjtxietian@outlook.com>2024-04-09 12:37:32 +0800
committerjsjtxietian <jsjtxietian@outlook.com>2024-04-09 12:37:32 +0800
commit7d4bdcf80ad34ce78a0dbc837e05f084e2a42270 (patch)
tree853c63379523c56bf82c64c730ea55343099d58c /editor/editor_properties.cpp
parent9d6bdbc56e0ac99a6cc3aaed1c114a6528cb87fc (diff)
downloadredot-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.cpp3
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);
}