diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-04-28 15:34:17 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-28 15:34:54 +0100 |
commit | af48ad2120b3240826edbd0af2a28531adeb5154 (patch) | |
tree | 2b448246c86be9bd8f4dc247d0b199e84b1ef557 /mysqlc/source/mysqlc_connection.cxx | |
parent | aef1826d9ca318a1359a2116e7f146e993413234 (diff) |
fix erroneous disposeOnce calls.
Change-Id: I4ce39e6d6534d1481f7e6b759d61040606da839c
Diffstat (limited to 'mysqlc/source/mysqlc_connection.cxx')
-rw-r--r-- | mysqlc/source/mysqlc_connection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysqlc/source/mysqlc_connection.cxx b/mysqlc/source/mysqlc_connection.cxx index 47ffd8d8e824..d26558bae931 100644 --- a/mysqlc/source/mysqlc_connection.cxx +++ b/mysqlc/source/mysqlc_connection.cxx @@ -531,7 +531,7 @@ void SAL_CALL OConnection::close() MutexGuard aGuard(m_aMutex); checkDisposed(OConnection_BASE::rBHelper.bDisposed); } - disposeOnce(); + dispose(); } // XWarningsSupplier |