diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2022-03-08 12:59:47 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2022-03-08 15:51:37 +0100 |
commit | d032b81bbf2ca87114d15749d74166d0ba414972 (patch) | |
tree | 26754654c4f7dc3ff962cb5a8f4a0f7e74433add | |
parent | d73551e4023f2c9de5adaaba3d2dc0e940de41e4 (diff) |
proper columns range check (tdf#147830)
Change-Id: Ib23bc3f194fa418035e7c70a4f3e1b682f9c46b8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131181
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
-rw-r--r-- | sc/source/core/data/table3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx index 36d144e7ff0d..37bdc900dca2 100644 --- a/sc/source/core/data/table3.cxx +++ b/sc/source/core/data/table3.cxx @@ -2695,7 +2695,7 @@ bool ScTable::CreateExcelQuery(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow if (bValid) { sal_uLong nVisible = 0; - for ( nCol=nCol1; nCol<=nCol2; nCol++ ) + for ( nCol=nCol1; nCol<=ClampToAllocatedColumns(nCol2); nCol++ ) nVisible += aCol[nCol].VisibleCount( nRow1+1, nRow2 ); if ( nVisible > SCSIZE_MAX / sizeof(void*) ) |