[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - sw/source

Caolán McNamara caolanm at redhat.com
Tue Mar 14 13:20:23 UTC 2017


 sw/source/uibase/dbui/dbmgr.cxx |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 445b719b8bbff9181cea3601649bb21c27acd7b5
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon Mar 13 12:44:10 2017 +0000

    Resolves: rhbz#1431540 crash in SwDBManager::releaseRevokeListener
    
    Change-Id: I8e61163de7e6192bdf613ab6b58906326499d6c2
    Reviewed-on: https://gerrit.libreoffice.org/35137
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    (cherry picked from commit e1f36eddf4596901a51de42322ccbf8d1df9d139)
    Reviewed-on: https://gerrit.libreoffice.org/35138

diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx
index 2d85ff7..9adf98c 100644
--- a/sw/source/uibase/dbui/dbmgr.cxx
+++ b/sw/source/uibase/dbui/dbmgr.cxx
@@ -3118,8 +3118,11 @@ SwDoc* SwDBManager::getDoc() const
 
 void SwDBManager::releaseRevokeListener()
 {
-    pImpl->m_xDataSourceRemovedListener->Dispose();
-    pImpl->m_xDataSourceRemovedListener.clear();
+    if (pImpl->m_xDataSourceRemovedListener.is())
+    {
+        pImpl->m_xDataSourceRemovedListener->Dispose();
+        pImpl->m_xDataSourceRemovedListener.clear();
+    }
 }
 
 SwConnectionDisposedListener_Impl::SwConnectionDisposedListener_Impl(SwDBManager& rManager)


More information about the Libreoffice-commits mailing list