summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2014-11-04 16:53:38 +0100
committerDavid Tardon <dtardon@redhat.com>2014-11-04 19:52:51 +0100
commit8bb9a0611438cd668a35d6424c41a476c7d9ceba (patch)
treeec003e0de4f2575c86b817627f4ef87ee0ed8f4c /connectivity
parent3e3214fd9c858457554a51b04d161d4a2bb19738 (diff)
coverity#706375 uncaught exception
Change-Id: I3d198d60524224e22d7f609ddde1ed8c3c319da9
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/odbc/OStatement.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/odbc/OStatement.cxx b/connectivity/source/drivers/odbc/OStatement.cxx
index 9c39db691533..de88682d596d 100644
--- a/connectivity/source/drivers/odbc/OStatement.cxx
+++ b/connectivity/source/drivers/odbc/OStatement.cxx
@@ -176,7 +176,7 @@ void SAL_CALL OStatement_Base::cancel( ) throw(RuntimeException, std::exception
checkDisposed(OStatement_BASE::rBHelper.bDisposed);
OSL_ENSURE(m_aStatementHandle,"StatementHandle is null!");
- OTools::ThrowException(m_pConnection,N3SQLCancel(m_aStatementHandle),m_aStatementHandle,SQL_HANDLE_STMT,*this);
+ N3SQLCancel(m_aStatementHandle);
}