You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the L478 of file src/coreComponents/common/format/table/TableFormatter.cpp, the code accesses row.cells[columnId - 1] without verifying that columnId > 0, which lead to undefined behavior if columnId == 0. This should be guarded to ensure safe access within vector bounds.
To Reproduce
Steps to reproduce the behavior:
Compile testTable in Debug
ctest -R testTable
The text was updated successfully, but these errors were encountered:
Describe the bug
In the L478 of file src/coreComponents/common/format/table/TableFormatter.cpp, the code accesses row.cells[columnId - 1] without verifying that columnId > 0, which lead to undefined behavior if columnId == 0. This should be guarded to ensure safe access within vector bounds.
To Reproduce
Steps to reproduce the behavior:
The text was updated successfully, but these errors were encountered: