[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - sfx2/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Fri Jul 9 07:58:22 UTC 2021


 sfx2/source/sidebar/TabBar.cxx |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 95315e4a0cce767500e35fc32aa7aa25ca54c308
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jul 8 13:48:35 2021 +0100
Commit:     Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Fri Jul 9 09:57:42 2021 +0200

    tdf#143146 copy functor and arg before calling function that can delete this
    
    Change-Id: I4e29fe6fa4119b709e31156afc5c2a5d08cdc072
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118624
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <xiscofauli at libreoffice.org>

diff --git a/sfx2/source/sidebar/TabBar.cxx b/sfx2/source/sidebar/TabBar.cxx
index eda97378bcae..540136c447f7 100644
--- a/sfx2/source/sidebar/TabBar.cxx
+++ b/sfx2/source/sidebar/TabBar.cxx
@@ -251,13 +251,17 @@ TabBar::Item::~Item()
     mrTabBar.GetContainer()->move(mxButton.get(), nullptr);
 }
 
-
 IMPL_LINK_NOARG(TabBar::Item, HandleClick, const OString&, void)
 {
+    // tdf#143146 copy the functor and arg before calling
+    // GrabFocusToDocument which may destroy this object
+    auto aDeckActivationFunctor = maDeckActivationFunctor;
+    auto sDeckId = msDeckId;
+
     mrTabBar.GrabFocusToDocument();
     try
     {
-        maDeckActivationFunctor(msDeckId);
+        aDeckActivationFunctor(sDeckId);
     }
     catch(const css::uno::Exception&)
     {} // workaround for #i123198#


More information about the Libreoffice-commits mailing list