summaryrefslogtreecommitdiff
path: root/scene/debugger
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2020-02-25 15:00:52 +0100
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2020-02-25 15:00:52 +0100
commitd8ba07ea8f2a17e77549c56ce8eddcbc2fcead7c (patch)
treeb3964c098ae8084ee253bb7ec16efa47375b6ed8 /scene/debugger
parentb8f0da7bed976f889a0316981dc419e179f63df8 (diff)
Fix debugger crash inspecting freed object.
This seems to be the correct way to validate a reference. Why is cast_to failing? Is this the correct way of checking if the object is valid?
Diffstat (limited to 'scene/debugger')
-rw-r--r--scene/debugger/scene_debugger.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/scene/debugger/scene_debugger.cpp b/scene/debugger/scene_debugger.cpp
index 9b9f0455a1..22ff0611a7 100644
--- a/scene/debugger/scene_debugger.cpp
+++ b/scene/debugger/scene_debugger.cpp
@@ -347,13 +347,17 @@ void SceneDebuggerObject::serialize(Array &r_arr, int p_max_size) {
const PropertyInfo &pi = properties[i].first;
Variant &var = properties[i].second;
- WeakRef *ref = Object::cast_to<WeakRef>(var);
- if (ref) {
- var = ref->get_ref();
- }
-
RES res = var;
+ if (var.get_type() == Variant::OBJECT && var.is_ref()) {
+ REF r = var;
+ if (r.is_valid()) {
+ res = *r;
+ } else {
+ res = RES();
+ }
+ }
+
Array prop;
prop.push_back(pi.name);
prop.push_back(pi.type);