diff options
author | Gilles Roudière <gilles.roudiere@gmail.com> | 2024-05-09 14:19:16 +0200 |
---|---|---|
committer | Gilles Roudière <gilles.roudiere@gmail.com> | 2024-05-10 10:46:04 +0200 |
commit | 7705265477cb6c5ced76d5faee3423f8555c6f1b (patch) | |
tree | 0c6842a0061c67d89ad8a4d408443050f7d78720 /scene/property_list_helper.cpp | |
parent | c4279fe3e0b27d0f40857c00eece7324a967285f (diff) | |
download | redot-engine-7705265477cb6c5ced76d5faee3423f8555c6f1b.tar.gz |
Fix PropertyListHelper::_get_property returning a valid value even if an index is outside the array valid indices
Co-authored-by: Tomasz Chabora <kobewi4e@gmail.com>
Diffstat (limited to 'scene/property_list_helper.cpp')
-rw-r--r-- | scene/property_list_helper.cpp | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/scene/property_list_helper.cpp b/scene/property_list_helper.cpp index b666e4c52d..152ecaf89d 100644 --- a/scene/property_list_helper.cpp +++ b/scene/property_list_helper.cpp @@ -36,14 +36,17 @@ const PropertyListHelper::Property *PropertyListHelper::_get_property(const Stri return nullptr; } - { - const String index_string = components[0].trim_prefix(prefix); - if (!index_string.is_valid_int()) { - return nullptr; - } - *r_index = index_string.to_int(); + const String index_string = components[0].trim_prefix(prefix); + if (!index_string.is_valid_int()) { + return nullptr; + } + + int index = index_string.to_int(); + if (index < 0 || index >= _call_array_length_getter()) { + return nullptr; } + *r_index = index; return property_list.getptr(components[1]); } @@ -66,6 +69,11 @@ Variant PropertyListHelper::_call_getter(const Property *p_property, int p_index return p_property->getter->call(object, argptrs, 1, ce); } +int PropertyListHelper::_call_array_length_getter() const { + Callable::CallError ce; + return array_length_getter->call(object, nullptr, 0, ce); +} + void PropertyListHelper::set_prefix(const String &p_prefix) { prefix = p_prefix; } @@ -83,7 +91,13 @@ bool PropertyListHelper::is_initialized() const { } void PropertyListHelper::setup_for_instance(const PropertyListHelper &p_base, Object *p_object) { + DEV_ASSERT(!p_base.prefix.is_empty()); + DEV_ASSERT(p_base.array_length_getter != nullptr); + DEV_ASSERT(!p_base.property_list.is_empty()); + DEV_ASSERT(p_object != nullptr); + prefix = p_base.prefix; + array_length_getter = p_base.array_length_getter; property_list = p_base.property_list; object = p_object; } |