[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - sd/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Oct 26 20:04:55 UTC 2018


 sd/source/filter/eppt/pptx-epptooxml.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8b09fbc6db3527e0de0af37e9efa43eda377fa05
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Oct 19 10:06:37 2018 +0100
Commit:     Michael Stahl <Michael.Stahl at cib.de>
CommitDate: Fri Oct 26 22:04:28 2018 +0200

    index validity check looks dubious
    
    Change-Id: Iccbbeab3b52d1d7369c19e333756713b42e83830
    Reviewed-on: https://gerrit.libreoffice.org/62021
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <Michael.Stahl at cib.de>

diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx
index d90ea3a60d7b..a4e95a6224ee 100644
--- a/sd/source/filter/eppt/pptx-epptooxml.cxx
+++ b/sd/source/filter/eppt/pptx-epptooxml.cxx
@@ -2082,7 +2082,7 @@ void PowerPointExport::ImplWriteNotes(sal_uInt32 nPageNum)
                 .makeStringAndClear());
 
     // add slide implicit relation to notes
-    if (mpSlidesFSArray.size() >= nPageNum)
+    if (nPageNum < mpSlidesFSArray.size())
         addRelation(mpSlidesFSArray[ nPageNum ]->getOutputStream(),
                     oox::getRelationship(Relationship::NOTESSLIDE),
                     OUStringBuffer()


More information about the Libreoffice-commits mailing list