svx/source/svdraw/svdpage.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 202a49a5831fbfcf057350ef949c13e75b3b7446 Author: Caolán McNamara <[email protected]> AuthorDate: Thu Oct 31 13:40:57 2019 +0000 Commit: Katarina Behrens <[email protected]> CommitDate: Fri Nov 1 10:51:51 2019 +0100 crashtesting: out of bounds on importing tdf90224-2.odt Change-Id: I5697cefd0859f007023fcd356d69db0e2176d67f Reviewed-on: https://gerrit.libreoffice.org/81850 Tested-by: Jenkins Reviewed-by: Katarina Behrens <[email protected]> diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx index ea99495edc24..d9dd6cc35e42 100644 --- a/svx/source/svdraw/svdpage.cxx +++ b/svx/source/svdraw/svdpage.cxx @@ -668,7 +668,7 @@ void SdrObjList::sort( std::vector<sal_Int32>& sortOrder) for (size_t i = 0; i < aNewSortOrder.size(); ++i) { - aNewList[i] = maList[ sortOrder[i] ]; + aNewList[i] = maList[ aNewSortOrder[i] ]; aNewList[i]->SetOrdNum(i); } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
