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

Markus Mohrhard markus.mohrhard at googlemail.com
Mon Aug 21 22:27:42 UTC 2017


 ucb/source/ucp/webdav/DAVSessionFactory.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0e35b7738d9f276c0566df0f2cc0f1eed7900d6c
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Tue Aug 22 00:24:08 2017 +0200

    fix build regression from d347c2403605c5aa3ddd98fb605366914acab79f
    
    Change-Id: Ia9e017732814d3f5b1f2efdaef45d96aa22daa46

diff --git a/ucb/source/ucp/webdav/DAVSessionFactory.cxx b/ucb/source/ucp/webdav/DAVSessionFactory.cxx
index 0809252bb5f2..24f7a54580e9 100644
--- a/ucb/source/ucp/webdav/DAVSessionFactory.cxx
+++ b/ucb/source/ucp/webdav/DAVSessionFactory.cxx
@@ -57,7 +57,7 @@ rtl::Reference< DAVSession > DAVSessionFactory::createDAVSession(
         std::unique_ptr< DAVSession > xElement(
             new SerfSession( this, inUri, *m_xProxyDecider.get() ) );
 
-        aIt = m_aMap.emplace(  inUri, xElement.get() ) ).first;
+        aIt = m_aMap.emplace(  inUri, xElement.get() ).first;
         aIt->second->m_aContainerIt = aIt;
         xElement.release();
         return aIt->second;


More information about the Libreoffice-commits mailing list