Skip to content

Commit 98c2f6b

Browse files
committed
Tables, Error Handling: Recovery from invalid index in TableSetColumnIndex(). (ocornut#1651)
1 parent e1ae7db commit 98c2f6b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docs/CHANGELOG.txt

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ Other changes:
6666
overridden when hot-reloading .ini state. (#7934)
6767
- Tables: tamed some .ini settings optimizations to more accurately allow
6868
overwriting/hot-reloading settings in more situations. (#7934)
69+
- Tables, Error Handling: Recovery from invalid index in TableSetColumnIndex(). (#1651)
6970
- Styles, Tabs: made the Close Button of selected tabs always visible by default,
7071
without requiring to hover the tab. (#8387)
7172
- Added style.TabCloseButtonMinWidthSelected/TabCloseButtonMinWidthUnselected settings

imgui_tables.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -2106,7 +2106,11 @@ bool ImGui::TableSetColumnIndex(int column_n)
21062106
{
21072107
if (table->CurrentColumn != -1)
21082108
TableEndCell(table);
2109-
IM_ASSERT(column_n >= 0 && table->ColumnsCount);
2109+
if ((column_n >= 0 && column_n < table->ColumnsCount) == false)
2110+
{
2111+
IM_ASSERT_USER_ERROR(column_n >= 0 && column_n < table->ColumnsCount, "TableSetColumnIndex() invalid column index!");
2112+
return false;
2113+
}
21102114
TableBeginCell(table, column_n);
21112115
}
21122116

0 commit comments

Comments
 (0)