Kaydet (Commit) 19c283ea authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1242888 Unused value

Change-Id: I3adde518347208cb1ab7a2013c519d9eabcf7b3d
üst 01539155
......@@ -2553,10 +2553,12 @@ void ODbaseTable::copyData(ODbaseTable* _pNewTable,sal_Int32 _nPos)
}
}
bOk = _pNewTable->InsertRow(*aInsertRow,true,_pNewTable->m_pColumns);
OSL_ENSURE(bOk,"Row could not be inserted!");
SAL_WARN_IF(!bOk, "connectivity.drivers", "Row could not be inserted!");
}
else
OSL_ENSURE(bOk,"Row could not be fetched!");
{
SAL_WARN_IF(!bOk, "connectivity.drivers", "Row could not be fetched!");
}
}
else
{
......
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