diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-17 15:13:51 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-17 15:13:51 +0000 |
commit | 1018fc55c47331f3baf9c13e17ce159966802b0a (patch) | |
tree | 9a13d39cbd63d134f8426d39abefda5c5d1c8049 /connectivity/source | |
parent | 309b6b5a9c3a7c0147ae6312c5eb11421bbcc058 (diff) |
#92924#: gcc-3.0.1
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/drivers/adabas/BConnection.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/connectivity/source/drivers/adabas/BConnection.cxx b/connectivity/source/drivers/adabas/BConnection.cxx index 6c08a78949ae..ef0eadff50bd 100644 --- a/connectivity/source/drivers/adabas/BConnection.cxx +++ b/connectivity/source/drivers/adabas/BConnection.cxx @@ -2,9 +2,9 @@ * * $RCSfile: BConnection.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: oj $ $Date: 2001-10-12 11:39:41 $ + * last change: $Author: hr $ $Date: 2001-10-17 16:13:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -219,7 +219,8 @@ void OAdabasConnection::disposing() { ::osl::MutexGuard aGuard(m_aMutex); - ::comphelper::disposeComponent(Reference< XTablesSupplier >(m_xCatalog)); + Reference< XTablesSupplier > xTableSupplier(m_xCatalog); + ::comphelper::disposeComponent(xTableSupplier); m_xCatalog = WeakReference< XTablesSupplier >(); |