diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-04-09 12:25:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-04-09 12:25:50 +0100 |
commit | 0cd2bf10fb4be5423e1386aa427c61ed4a33ef34 (patch) | |
tree | b949222ccb81b273a62561027ebc2d2bc7c21808 /sfx2 | |
parent | 1ad3ed20071c81e031c1ed7f546c37fd280803c0 (diff) |
Resolves: tdf#90423 too risky to dlclose basctl once opened
Change-Id: I92c171b5900d770195bcad71a7df2a282649d479
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/app.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx index 7073ef95de39..ad88d7700901 100644 --- a/sfx2/source/appl/app.cxx +++ b/sfx2/source/appl/app.cxx @@ -594,6 +594,8 @@ void SfxApplication::MacroOrganizer( sal_Int16 nTabId ) // get symbol basicide_macro_organizer pSymbol = reinterpret_cast<basicide_macro_organizer>(aMod.getFunctionSymbol("basicide_macro_organizer")); + aMod.release(); + SAL_WARN_IF(!pSymbol, "sfx.doc", "SfxApplication::MacroOrganizer, no symbol!"); if (!pSymbol) return; |