summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorok <ok@openoffice.org>2001-06-28 08:37:48 +0000
committerok <ok@openoffice.org>2001-06-28 08:37:48 +0000
commit2d60aed0ee7be5d0c66b6eb13238efa285f9d44d (patch)
tree942964f3159f46df01d8867ed7c5df1cdbb1a4dc /cppuhelper
parentaf5961a89599b495b184082a6e5fa4851232fae2 (diff)
fix: #88219# HOTFIX 4 EA
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/shlib.cxx14
1 files changed, 10 insertions, 4 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx
index a4fe36e1abd8..2641038411e1 100644
--- a/cppuhelper/source/shlib.cxx
+++ b/cppuhelper/source/shlib.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: shlib.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: jl $ $Date: 2001-06-07 10:58:46 $
+ * last change: $Author: ok $ $Date: 2001-06-28 09:37:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -669,7 +669,10 @@ void SAL_CALL writeSharedLibComponentInfo(
if (! bRet)
{
- ::osl_unloadModule( lib );
+//!
+//! OK: please look at #88219#
+//!
+//! ::osl_unloadModule( lib );
#ifdef DEBUG
out( "### cannot write component info: " );
out( aExcMsg );
@@ -678,7 +681,10 @@ void SAL_CALL writeSharedLibComponentInfo(
throw CannotRegisterImplementationException( aExcMsg, Reference< XInterface >() );
}
- ::osl_unloadModule( lib);
+//!
+//! OK: please look at #88219#
+//!
+//! ::osl_unloadModule( lib);
}
}