summaryrefslogtreecommitdiffstats
path: root/connectivity
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-07-21 15:03:03 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-07-21 15:03:03 +0100
commit5c938857c4bf69eb65b77ff3a862f50ab4a04af7 (patch)
treed240d301439b60d814f6a3e2ea8c46654f4e8ecd /connectivity
parentcoverity#1312085 Dereference null return value (diff)
downloadcore-5c938857c4bf69eb65b77ff3a862f50ab4a04af7.tar.gz
core-5c938857c4bf69eb65b77ff3a862f50ab4a04af7.zip
coverity#1312084 Unchecked return value
Change-Id: I4b4b263f4448c4d3b83cea57635624b31f757576
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/file/FResultSet.cxx2
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())
{