Fix RichTextLabel crash with out of bound exception

Fixes #68242.

(cherry picked from commit 44592c8c19)
This commit is contained in:
Paweł Fertyk 2022-11-06 13:02:16 +01:00 committed by Yuri Sizov
parent 755a86f502
commit 41f4068a6e

View File

@ -2375,7 +2375,7 @@ int RichTextLabel::_find_list(Item *p_item, Vector<int> &r_index, Vector<ItemLis
int index = 1;
if (frame != nullptr) {
for (int i = list->line + 1; i <= prev_item->line; i++) {
for (int i = list->line + 1; i <= prev_item->line && i < (int)frame->lines.size(); i++) {
if (_find_list_item(frame->lines[i].from) == list) {
index++;
}