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

New commits:
commit a0ee0a603beecf16d162318e1bd855d4d26f498d
Author:     Mohit Marathe <[email protected]>
AuthorDate: Fri Nov 14 17:20:53 2025 +0530
Commit:     Mohit Marathe <[email protected]>
CommitDate: Fri Nov 14 13:35:39 2025 +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

diff --git a/sd/source/core/drawdoc2.cxx b/sd/source/core/drawdoc2.cxx
index 786932b8bf04..f267ab2f5201 100644
--- a/sd/source/core/drawdoc2.cxx
+++ b/sd/source/core/drawdoc2.cxx
@@ -1533,6 +1533,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