diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-07-21 15:03:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-07-21 15:03:03 +0100 |
commit | 5c938857c4bf69eb65b77ff3a862f50ab4a04af7 (patch) | |
tree | d240d301439b60d814f6a3e2ea8c46654f4e8ecd /connectivity | |
parent | 7b00ec7bb7bbf5206e7db4c566d1e681fb9f9607 (diff) |
coverity#1312084 Unchecked return value
Change-Id: I4b4b263f4448c4d3b83cea57635624b31f757576
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/file/FResultSet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/file/FResultSet.cxx b/connectivity/source/drivers/file/FResultSet.cxx index 9433b1ef9e17..9f61747ca42d 100644 --- a/connectivity/source/drivers/file/FResultSet.cxx +++ b/connectivity/source/drivers/file/FResultSet.cxx @@ -539,7 +539,7 @@ void SAL_CALL OResultSet::insertRow( ) throw(SQLException, RuntimeException, st // we know that we append new rows at the end // so we have to know where the end is - m_aSkipDeletedSet.skipDeleted(IResultSetHelper::LAST,1,false); + (void)m_aSkipDeletedSet.skipDeleted(IResultSetHelper::LAST,1,false); m_bRowInserted = m_pTable->InsertRow(*m_aInsertRow, true, m_xColsIdx); if(m_bRowInserted && m_pFileSet.is()) { |