diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-09 16:52:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-09 16:52:52 +0200 |
commit | 123a6b8019b0e25a59fc01fe489c2049f7511a0f (patch) | |
tree | 75ed4f0967ff5c4afe9b195d2c8e5bf3851bfa7b | |
parent | 08725bdc28e05b53179e0464691c49e589e10944 (diff) | |
parent | 0528ce0a2a4b492d8ad7116654e00e9a2a790700 (diff) |
Merge pull request #32682 from Calinou/fix-nodepath-crash
Fix crash when using `Node.get_as_property_path()`
-rw-r--r-- | core/node_path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/node_path.cpp b/core/node_path.cpp index b43f76f680..970ed100fe 100644 --- a/core/node_path.cpp +++ b/core/node_path.cpp @@ -269,7 +269,7 @@ NodePath NodePath::rel_path_to(const NodePath &p_np) const { NodePath NodePath::get_as_property_path() const { - if (!data->path.size()) { + if (!data || !data->path.size()) { return *this; } else { Vector<StringName> new_path = data->subpath; |