Kaydet (Commit) 5c938857 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1312084 Unchecked return value

Change-Id: I4b4b263f4448c4d3b83cea57635624b31f757576
üst 7b00ec7b
......@@ -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())
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment