diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2018-07-12 19:06:03 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2018-07-13 10:28:03 +0200 |
commit | d3387b38fe0eea3fb7ac630c026f02986e8dafc4 (patch) | |
tree | d6abeef1fb6235c03687d9b84af79f2d93cbbb00 /sc/inc | |
parent | bc67bda7363df48f1983513a8e969b61738139f5 (diff) |
tdf#118620 - avoid out of bounds iterator for end of sheet pivots.
Change-Id: I2ddcf56dc94175718739611f0791558fda87b1ba
Reviewed-on: https://gerrit.libreoffice.org/57358
Tested-by: Jenkins
Reviewed-by: Kohei Yoshida <libreoffice@kohei.us>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/columniterator.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/inc/columniterator.hxx b/sc/inc/columniterator.hxx index c964e0ccb9c9..b62510ac380a 100644 --- a/sc/inc/columniterator.hxx +++ b/sc/inc/columniterator.hxx @@ -67,6 +67,7 @@ class ColumnIterator { CellStoreType::const_position_type maPos; CellStoreType::const_position_type maPosEnd; + bool mbComplete; public: ColumnIterator( const CellStoreType& rCells, SCROW nRow1, SCROW nRow2 ); |