Fix crash in RichTextLabel table parsing
Fixed with help of feedback from bruvzg. Prevents invalid items getting to stack.
This commit is contained in:
parent
0daa86d70e
commit
81d0f42800
1 changed files with 1 additions and 0 deletions
|
@ -3336,6 +3336,7 @@ void RichTextLabel::push_table(int p_columns, InlineAlignment p_alignment, int p
|
|||
_stop_thread();
|
||||
MutexLock data_lock(data_mutex);
|
||||
|
||||
ERR_FAIL_COND(current->type == ITEM_TABLE);
|
||||
ERR_FAIL_COND(p_columns < 1);
|
||||
ItemTable *item = memnew(ItemTable);
|
||||
|
||||
|
|
Loading…
Reference in a new issue