Kaydet (Commit) b0f3f309 authored tarafından Arkadiy Illarionov's avatar Arkadiy Illarionov Kaydeden (comit) Noel Grandin

Fix iterator boundary

Change-Id: I81366dd7f08cf50eb289e742b3923f343ce10f80
Reviewed-on: https://gerrit.libreoffice.org/66409
Tested-by: Jenkins
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 9fd32f2f
......@@ -713,7 +713,7 @@ void ScShapeChildren::FindChanged(ScShapeChildVec& rOld, ScShapeChildVec& rNew)
ScShapeChildVec::iterator aOldItr = rOld.begin();
ScShapeChildVec::iterator aOldEnd = rOld.end();
ScShapeChildVec::const_iterator aNewItr = rNew.begin();
ScShapeChildVec::const_iterator aNewEnd = rNew.begin();
ScShapeChildVec::const_iterator aNewEnd = rNew.end();
uno::Reference<XAccessible> xAcc;
while ((aNewItr != aNewEnd) && (aOldItr != aOldEnd))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment