coverity#1242888 Unused value

Change-Id: I3adde518347208cb1ab7a2013c519d9eabcf7b3d
This commit is contained in:
Caolán McNamara 2014-10-03 09:28:26 +01:00
parent 01539155df
commit 19c283eaa8

View File

@ -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
{