Merge pull request #62077 from RandomShaper/fix_append_array

Validate every source element separately `Array::append_array()`
This commit is contained in:
Rémi Verschelde 2022-06-15 23:52:48 +02:00 committed by GitHub
commit cfacc400a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -260,7 +260,9 @@ void Array::push_back(const Variant &p_value) {
void Array::append_array(const Array &p_array) {
ERR_FAIL_COND_MSG(_p->read_only, "Array is in read-only state.");
ERR_FAIL_COND(!_p->typed.validate(p_array, "append_array"));
for (int i = 0; i < p_array.size(); ++i) {
ERR_FAIL_COND(!_p->typed.validate(p_array[i], "append_array"));
}
_p->array.append_array(p_array._p->array);
}