Fix debugger crash inspecting freed object.
This seems to be the correct way to validate a reference.
Why is cast_to failing?
(cherry picked from commit d8ba07ea8f
)
This commit is contained in:
parent
105b7468b1
commit
e92669654a
1 changed files with 9 additions and 5 deletions
|
@ -680,13 +680,17 @@ void ScriptDebuggerRemote::_send_object_id(ObjectID p_id) {
|
|||
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);
|
||||
|
|
Loading…
Reference in a new issue