diff options
author | David Tardon <dtardon@redhat.com> | 2014-11-04 16:51:52 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-11-04 19:52:51 +0100 |
commit | 3e3214fd9c858457554a51b04d161d4a2bb19738 (patch) | |
tree | d9b998ad337550f419bf404b5c54b5fbf05312ad /connectivity/source | |
parent | f7f06f092ebf5a8a66b49a7380ea9f8a6553dbb5 (diff) |
coverity#706366 uncaught exception
Change-Id: If89d6613394220fa4ca1da9b5b8820d9dbc205c7
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/drivers/odbc/OResultSet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/odbc/OResultSet.cxx b/connectivity/source/drivers/odbc/OResultSet.cxx index a53e94503490..149a1642ef8c 100644 --- a/connectivity/source/drivers/odbc/OResultSet.cxx +++ b/connectivity/source/drivers/odbc/OResultSet.cxx @@ -818,7 +818,7 @@ void SAL_CALL OResultSet::cancel( ) throw(RuntimeException, std::exception) checkDisposed(OResultSet_BASE::rBHelper.bDisposed); - OTools::ThrowException(m_pStatement->getOwnConnection(),N3SQLCancel(m_aStatementHandle),m_aStatementHandle,SQL_HANDLE_STMT,*this); + N3SQLCancel(m_aStatementHandle); } void SAL_CALL OResultSet::clearWarnings( ) throw(SQLException, RuntimeException, std::exception) |