From 3c50bae22266ee708e7e81cf0334d8944261a891 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 31 Aug 2016 21:47:39 +0100 Subject: coverity#1372392 Uncaught exception Change-Id: Ic8bb4748b0752796fcb76c1816441bb22b896809 --- connectivity/source/drivers/mork/MResultSet.cxx | 3 +-- connectivity/source/drivers/mork/MResultSet.hxx | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'connectivity') 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 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); -- cgit