fix crash on null class in ClassDB.get_property() and set_property()
This commit is contained in:
parent
86108679b3
commit
400843c172
1 changed files with 4 additions and 0 deletions
|
@ -1095,6 +1095,8 @@ bool ClassDB::get_property_info(StringName p_class, StringName p_property, Prope
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ClassDB::set_property(Object *p_object, const StringName &p_property, const Variant &p_value, bool *r_valid) {
|
bool ClassDB::set_property(Object *p_object, const StringName &p_property, const Variant &p_value, bool *r_valid) {
|
||||||
|
ERR_FAIL_NULL_V(p_object, false);
|
||||||
|
|
||||||
ClassInfo *type = classes.getptr(p_object->get_class_name());
|
ClassInfo *type = classes.getptr(p_object->get_class_name());
|
||||||
ClassInfo *check = type;
|
ClassInfo *check = type;
|
||||||
while (check) {
|
while (check) {
|
||||||
|
@ -1142,6 +1144,8 @@ bool ClassDB::set_property(Object *p_object, const StringName &p_property, const
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ClassDB::get_property(Object *p_object, const StringName &p_property, Variant &r_value) {
|
bool ClassDB::get_property(Object *p_object, const StringName &p_property, Variant &r_value) {
|
||||||
|
ERR_FAIL_NULL_V(p_object, false);
|
||||||
|
|
||||||
ClassInfo *type = classes.getptr(p_object->get_class_name());
|
ClassInfo *type = classes.getptr(p_object->get_class_name());
|
||||||
ClassInfo *check = type;
|
ClassInfo *check = type;
|
||||||
while (check) {
|
while (check) {
|
||||||
|
|
Loading…
Reference in a new issue