[Libreoffice-commits] core.git: sc/source

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Thu Jun 27 07:40:15 UTC 2019


 sc/source/ui/Accessibility/AccessibleDocument.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 19c0e9dba8495a266db70e498dd46070db794668
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Thu Jun 27 08:18:31 2019 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Thu Jun 27 09:39:11 2019 +0200

    Missing initialization of ScChildrenShapes::mbShapesNeedSorting
    
    ...introduced with 8fb35f06ddec551a6de887ce269d9196d9fe2337 "tdf#119388 calc,
    slow removing column, improve ScChildrenShapes".  Caused
    -fsanitize=invalid-bool-load during JunitTest_sc_unoapi_1.
    
    Change-Id: Ib45b4f057c67077db7e4dfe39114362d414f7171
    Reviewed-on: https://gerrit.libreoffice.org/74778
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/sc/source/ui/Accessibility/AccessibleDocument.cxx b/sc/source/ui/Accessibility/AccessibleDocument.cxx
index bbad38b712c5..1e9b8244a96e 100644
--- a/sc/source/ui/Accessibility/AccessibleDocument.cxx
+++ b/sc/source/ui/Accessibility/AccessibleDocument.cxx
@@ -272,6 +272,7 @@ private:
 
 ScChildrenShapes::ScChildrenShapes(ScAccessibleDocument* pAccessibleDocument, ScTabViewShell* pViewShell, ScSplitPos eSplitPos)
     :
+    mbShapesNeedSorting(false),
     mnShapesSelected(0),
     mpViewShell(pViewShell),
     mpAccessibleDocument(pAccessibleDocument),


More information about the Libreoffice-commits mailing list