sd/source/core/drawdoc2.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 72f36f48525fe760cafbf67da2684e25047bd7ff
Author:     Mohit Marathe <[email protected]>
AuthorDate: Fri Nov 14 17:20:53 2025 +0530
Commit:     Michael Stahl <[email protected]>
CommitDate: Mon Jan 12 19:25:42 2026 +0100

    sd: increment iterator to fix infinite loop
    
    Signed-off-by: Mohit Marathe <[email protected]>
    Change-Id: I6621f5dd73cc3d1d5a934180960852a664f610e8
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194024
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196800
    Reviewed-by: Michael Stahl <[email protected]>
    Tested-by: Jenkins

diff --git a/sd/source/core/drawdoc2.cxx b/sd/source/core/drawdoc2.cxx
index bef7d40cc20f..623c413fe60e 100644
--- a/sd/source/core/drawdoc2.cxx
+++ b/sd/source/core/drawdoc2.cxx
@@ -1532,6 +1532,7 @@ void SdDrawDocument::ReshufflePages()
 
             return bIsRTL ? (xCenter1 > xCenter2) : (xCenter1 < xCenter2);
         });
+        rowStart = rowEnd;
     }
 
     for (size_t i = 0; i < aPageOrder.size(); i++)

Reply via email to