From b26ccfa08014ec9226aecdc9bfa9f1355ce660eb Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 2 Jul 2014 09:30:43 +0100 Subject: coverity#706368 Uncaught exception Change-Id: Ia8988be31ed4dc4843bd6c2573ec14efa3af6397 --- connectivity/source/drivers/odbc/OStatement.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'connectivity/source/drivers/odbc') diff --git a/connectivity/source/drivers/odbc/OStatement.cxx b/connectivity/source/drivers/odbc/OStatement.cxx index f1bcd6fd67c9..3e1f82997bf7 100644 --- a/connectivity/source/drivers/odbc/OStatement.cxx +++ b/connectivity/source/drivers/odbc/OStatement.cxx @@ -235,7 +235,8 @@ void OStatement_Base::clearMyResultSet () throw (SQLException) m_xResultSet.clear(); } -SQLLEN OStatement_Base::getRowCount () throw( SQLException) +SQLLEN OStatement_Base::getRowCount() + throw (SQLException, RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(OStatement_BASE::rBHelper.bDisposed); -- cgit