Kaydet (Commit) 792b127d authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1242888 Unused value

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