sc/source/core/data/column.cxx  |    2 +-
 sc/source/core/data/column2.cxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1e42a970c582b1ecfb652559c90a027554984ab7
Author: Luboš Luňák <l.lu...@collabora.com>
Date:   Fri Jun 8 21:14:19 2018 +0200

    properly go to next row when walking mdds container
    
    Since only elements from nOffset up to nEnd are iterated, then the 
difference
    is not just nEnd but (nEnd-nOffset).
    Without this, ScColumn::HandleRefArrayForParallelism() skips some cells
    and e.g. fdo#77750-1 asserts in ScFormulaCell::MaybeInterpret().
    
    Change-Id: I4d595e9faff51f08bf074d549185c24aa00d8a45
    Reviewed-on: https://gerrit.libreoffice.org/55488
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Kohei Yoshida <libreoff...@kohei.us>
    Tested-by: Kohei Yoshida <libreoff...@kohei.us>
    (cherry picked from commit cbe3ae1894800a5fddbd598403be54f9495cc964)
    Reviewed-on: https://gerrit.libreoffice.org/55502
    Reviewed-by: Luboš Luňák <l.lu...@collabora.com>
    Tested-by: Luboš Luňák <l.lu...@collabora.com>

diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx
index ae6813988293..d7c25de498de 100644
--- a/sc/source/core/data/column.cxx
+++ b/sc/source/core/data/column.cxx
@@ -184,7 +184,7 @@ sc::MatrixEdge ScColumn::GetBlockMatrixEdges( SCROW nRow1, 
SCROW nRow2, sc::Matr
                 bOpen = false;      // bottom edge closes
         }
 
-        nRow += nEnd;
+        nRow += nEnd - nOffset;
     }
     if (bOpen)
         nEdges |= MatrixEdge::Open; // not closed, matrix continues
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 3c856fd161cd..6eb7697d074f 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -2841,7 +2841,7 @@ bool ScColumn::HandleRefArrayForParallelism( SCROW nRow1, 
SCROW nRow2 )
                     // Loop inside the formula block.
                     (*itCell)->MaybeInterpret();
                 }
-                nRow += nEnd;
+                nRow += nEnd - nOffset;
                 break;
             }
             default:
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to