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

New commits:
commit 8b09fbc6db3527e0de0af37e9efa43eda377fa05
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Fri Oct 19 10:06:37 2018 +0100
Commit:     Michael Stahl <michael.st...@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.st...@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()
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to