[Libreoffice-commits] core.git: sw/source

Michael Stahl (via logerrit) logerrit at kemper.freedesktop.org
Mon Oct 28 10:07:49 UTC 2019


 sw/source/core/doc/DocumentContentOperationsManager.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9f78a4174e5099ad3af65a23e158a51c1afca54d
Author:     Michael Stahl <Michael.Stahl at cib.de>
AuthorDate: Mon Oct 28 10:11:47 2019 +0100
Commit:     Michael Stahl <michael.stahl at cib.de>
CommitDate: Mon Oct 28 11:07:10 2019 +0100

    cid#1455157: sw: Memory - illegal accesses  (WRAPPER_ESCAPE)
    
    (regression from b522fc0646915d4da94df38dd249c88b28f25be7)
    
    Change-Id: I54f93ac16a2d4ddc687937d44c3aec450e59dd0e
    Reviewed-on: https://gerrit.libreoffice.org/81588
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <michael.stahl at cib.de>

diff --git a/sw/source/core/doc/DocumentContentOperationsManager.cxx b/sw/source/core/doc/DocumentContentOperationsManager.cxx
index 410a63e1d6d6..2e53c74032e9 100644
--- a/sw/source/core/doc/DocumentContentOperationsManager.cxx
+++ b/sw/source/core/doc/DocumentContentOperationsManager.cxx
@@ -575,7 +575,7 @@ namespace
         }
         while (!startedFields.empty())
         {
-            auto const& pField(startedFields.top());
+            auto const pField(startedFields.top());
             startedFields.pop();
             SwPosition const& rStart(pField->GetMarkStart());
             std::pair<sal_uLong, sal_Int32> const pos(


More information about the Libreoffice-commits mailing list