--- a/remotestoragefw/gsplugin/src/rsfwgspluginsettinglist.cpp Thu Jan 07 13:15:09 2010 +0200
+++ b/remotestoragefw/gsplugin/src/rsfwgspluginsettinglist.cpp Mon Jan 18 21:00:57 2010 +0200
@@ -118,6 +118,7 @@
}
else
{
+ //coverity[logical_vs_bitwise]
cflags &= (!CAknTextSettingPage::EZeroLengthAllowed);
}
(*SettingItemArray())[aIndex]->SetSettingPageFlags(cflags);
--- a/remotestoragefw/remotefileengine/src/rsfwlruprioritylist.cpp Thu Jan 07 13:15:09 2010 +0200
+++ b/remotestoragefw/remotefileengine/src/rsfwlruprioritylist.cpp Mon Jan 18 21:00:57 2010 +0200
@@ -197,7 +197,7 @@
fid.iVolumeId = aStream.ReadInt32L();
// check whether there is no trash in the data being internalized
- if (fid.iVolumeId >= 0 && fid.iVolumeId <= KMaxVolumes && fid.iNodeId > 0)
+ if (fid.iVolumeId >= 0 && fid.iVolumeId < KMaxVolumes && fid.iNodeId > 0)
{
// find existing CRsfwFileEntry object based on TFid
CRsfwVolume* volume = aVolumeTable->iVolumes[fid.iVolumeId];