diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-08-31 21:47:39 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-09-01 10:40:14 +0100 |
commit | 3c50bae22266ee708e7e81cf0334d8944261a891 (patch) | |
tree | 0e2e2df497235cf11a3b182b96d970da9080f7d0 /connectivity/source/drivers/mork | |
parent | c39378edb25686ed445f11fc60d1e0e07eed18dd (diff) |
coverity#1372392 Uncaught exception
Change-Id: Ic8bb4748b0752796fcb76c1816441bb22b896809
Diffstat (limited to 'connectivity/source/drivers/mork')
-rw-r--r-- | connectivity/source/drivers/mork/MResultSet.cxx | 3 | ||||
-rw-r--r-- | connectivity/source/drivers/mork/MResultSet.hxx | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/connectivity/source/drivers/mork/MResultSet.cxx b/connectivity/source/drivers/mork/MResultSet.cxx index bf99c8f085af..de5d0c9113cd 100644 --- a/connectivity/source/drivers/mork/MResultSet.cxx +++ b/connectivity/source/drivers/mork/MResultSet.cxx @@ -997,9 +997,8 @@ void OResultSet::analyseWhereClause( const OSQLParseNode* parseT } } - void OResultSet::fillRowData() - throw (css::sdbc::SQLException, css::uno::RuntimeException) + throw (css::sdbc::SQLException, css::uno::RuntimeException, std::exception) { OSL_ENSURE( m_pStatement, "Require a statement" ); diff --git a/connectivity/source/drivers/mork/MResultSet.hxx b/connectivity/source/drivers/mork/MResultSet.hxx index 6300cb9fa50c..57a651954920 100644 --- a/connectivity/source/drivers/mork/MResultSet.hxx +++ b/connectivity/source/drivers/mork/MResultSet.hxx @@ -241,7 +241,7 @@ protected: ::rtl::Reference<connectivity::OSQLColumns> m_xParamColumns; void parseParameter( const OSQLParseNode* pNode, OUString& rMatchString ); - void fillRowData() throw(css::sdbc::SQLException, css::uno::RuntimeException); + void fillRowData() throw(css::sdbc::SQLException, css::uno::RuntimeException, std::exception); void analyseWhereClause( const OSQLParseNode* parseTree, MQueryExpression &queryExpression); |