mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fix CppCheck ftfilecreator.cc
/libretroshare/src/ft/ftfilecreator.cc:86: warning: Cppcheck(unusedVariable): Unused variable: it /libretroshare/src/ft/ftfilecreator.cc:545: warning: Cppcheck(unreadVariable): Variable 'chunks_for_this_peer' is modified but its new value is never used.
This commit is contained in:
parent
68934499d4
commit
51ed0324f6
@ -83,7 +83,7 @@ bool ftFileCreator::getFileData(const RsPeerId& peer_id,uint64_t offset, uint32_
|
|||||||
// try if we have data from an incomplete or not veryfied chunk
|
// try if we have data from an incomplete or not veryfied chunk
|
||||||
if(!have_it && allow_unverified)
|
if(!have_it && allow_unverified)
|
||||||
{
|
{
|
||||||
std::map<uint64_t, ftChunk>::iterator it;
|
//std::map<uint64_t, ftChunk>::iterator it;
|
||||||
have_it = true;
|
have_it = true;
|
||||||
// this map contains chunks which are currently being downloaded
|
// this map contains chunks which are currently being downloaded
|
||||||
for(std::map<uint64_t,ftChunk>::iterator it=mChunks.begin(); it!=mChunks.end(); ++it)
|
for(std::map<uint64_t,ftChunk>::iterator it=mChunks.begin(); it!=mChunks.end(); ++it)
|
||||||
@ -542,6 +542,7 @@ bool ftFileCreator::getMissingChunk(const RsPeerId& peer_id,uint32_t size_hint,u
|
|||||||
mChunks[chunk.offset] = chunk ;
|
mChunks[chunk.offset] = chunk ;
|
||||||
|
|
||||||
offset = chunk.offset ;
|
offset = chunk.offset ;
|
||||||
|
// cppcheck-suppress unreadVariable
|
||||||
size = chunk.size ;
|
size = chunk.size ;
|
||||||
|
|
||||||
++chunks_for_this_peer ; // increase number of chunks for this peer.
|
++chunks_for_this_peer ; // increase number of chunks for this peer.
|
||||||
|
Loading…
Reference in New Issue
Block a user