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

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Tue Sep 22 15:26:40 UTC 2020


 svx/source/accessibility/ChildrenManagerImpl.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit c5ff4cbd0192773c6503d54325de01abda7e9fa5
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Tue Sep 22 14:37:41 2020 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Tue Sep 22 17:25:54 2020 +0200

    tdf#121323 avoid fatal exception with a11y enabled
    
    not related to the problem described there, but worth avoiding
    
    Change-Id: I5a33425d856d1a2d31a4e735b9936a89576121b3
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103174
    Tested-by: Caolán McNamara <caolanm at redhat.com>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/svx/source/accessibility/ChildrenManagerImpl.cxx b/svx/source/accessibility/ChildrenManagerImpl.cxx
index c5214d406bbb..08af808b26bf 100644
--- a/svx/source/accessibility/ChildrenManagerImpl.cxx
+++ b/svx/source/accessibility/ChildrenManagerImpl.cxx
@@ -294,7 +294,7 @@ void ChildrenManagerImpl::CreateListOfVisibleShapes (
     }
 
     // Add the visible shapes for which only the XShapes exist.
-    if (!mxShapeList.is())
+    if (!mxShapeList.is() || !mxShapeList->hasElements())
         return;
 
     sal_Int32 nShapeCount = mxShapeList->getCount();
@@ -321,7 +321,6 @@ void ChildrenManagerImpl::CreateListOfVisibleShapes (
     }
 }
 
-
 void ChildrenManagerImpl::RemoveNonVisibleChildren (
     const ChildDescriptorListType& rNewChildList,
     ChildDescriptorListType& rOldChildList)


More information about the Libreoffice-commits mailing list