mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #73544 from mashumafi/fix-func-arg-null
Fix: Func with typed args error when arg is null
This commit is contained in:
commit
ea2bc9795c
3 changed files with 36 additions and 4 deletions
|
@ -105,9 +105,10 @@ public:
|
|||
return false;
|
||||
}
|
||||
|
||||
Object *obj = p_variant.get_validated_object();
|
||||
bool was_freed = false;
|
||||
Object *obj = p_variant.get_validated_object_with_check(was_freed);
|
||||
if (!obj) {
|
||||
return false;
|
||||
return !was_freed;
|
||||
}
|
||||
|
||||
if (!ClassDB::is_parent_class(obj->get_class_name(), native_type)) {
|
||||
|
@ -124,9 +125,10 @@ public:
|
|||
return false;
|
||||
}
|
||||
|
||||
Object *obj = p_variant.get_validated_object();
|
||||
bool was_freed = false;
|
||||
Object *obj = p_variant.get_validated_object_with_check(was_freed);
|
||||
if (!obj) {
|
||||
return false;
|
||||
return !was_freed;
|
||||
}
|
||||
|
||||
Ref<Script> base = obj && obj->get_script_instance() ? obj->get_script_instance()->get_script() : nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue