mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 20:23:53 +00:00
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
@ -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 New Issue
Block a user