summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/dbase/DConnection.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-10-05 05:15:40 +0000
committerOcke Janssen <oj@openoffice.org>2001-10-05 05:15:40 +0000
commit32225160684c7429a28b59c8e0c60bc092d25b46 (patch)
treee777ed33ce888a09e7f20f29203083129a021472 /connectivity/source/drivers/dbase/DConnection.cxx
parent9f7a87d03940300314ed42fa61113ccafc39ffe5 (diff)
#92636# hold catalog as weak
Diffstat (limited to 'connectivity/source/drivers/dbase/DConnection.cxx')
-rw-r--r--connectivity/source/drivers/dbase/DConnection.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/dbase/DConnection.cxx b/connectivity/source/drivers/dbase/DConnection.cxx
index cf40b0292103..46e4301554bc 100644
--- a/connectivity/source/drivers/dbase/DConnection.cxx
+++ b/connectivity/source/drivers/dbase/DConnection.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: DConnection.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: oj $ $Date: 2001-09-18 13:14:31 $
+ * last change: $Author: oj $ $Date: 2001-10-05 06:15:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -136,7 +136,7 @@ Reference< XDatabaseMetaData > SAL_CALL ODbaseConnection::getMetaData( ) throw(
{
::osl::MutexGuard aGuard( m_aMutex );
Reference< XTablesSupplier > xTab = m_xCatalog;
- if(!m_xCatalog.is())
+ if(!xTab.is())
{
ODbaseCatalog *pCat = new ODbaseCatalog(this);
xTab = pCat;