suppressed some uninitialized memory reads

git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5.0@2646 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2010-03-27 15:44:18 +00:00
parent f47c30277e
commit a7358e060a
3 changed files with 3 additions and 2 deletions

View File

@ -138,7 +138,7 @@ class RsConfig
firewalled = forwardPort = false ; firewalled = forwardPort = false ;
maxDownloadDataRate = maxUploadDataRate = maxIndivDataRate = 0 ; maxDownloadDataRate = maxUploadDataRate = maxIndivDataRate = 0 ;
promptAtBoot = 0 ; promptAtBoot = 0 ;
DHTActive = uPnPActive = netLocalOk = netDhtOk = netStunOk = netExtraAddressOk = false ; DHTActive = uPnPActive = netLocalOk = netUpnpOk = netDhtOk = netStunOk = netExtraAddressOk = false ;
uPnPState = DHTPeers = 0 ; uPnPState = DHTPeers = 0 ;
} }
std::string ownId; std::string ownId;

View File

@ -423,6 +423,7 @@ void p3Ranking::addRankMsg(RsRankLinkMsg *msg)
RankGroup grp; RankGroup grp;
grp.rid = rid; grp.rid = rid;
grp.ownTag = false; grp.ownTag = false;
grp.rank = 0.0f;
/*************************************************************************/ /*************************************************************************/
/****************************** LINK SPECIFIC ****************************/ /****************************** LINK SPECIFIC ****************************/
@ -438,7 +439,6 @@ void p3Ranking::addRankMsg(RsRankLinkMsg *msg)
mData[rid] = grp; mData[rid] = grp;
it = mData.find(rid); it = mData.find(rid);
if (id == "") if (id == "")
{ {
#ifdef RANK_DEBUG #ifdef RANK_DEBUG

View File

@ -95,6 +95,7 @@ RsQueueThread::RsQueueThread(uint32_t min, uint32_t max, double relaxFactor )
:mMinSleep(min), mMaxSleep(max), mRelaxFactor(relaxFactor) :mMinSleep(min), mMaxSleep(max), mRelaxFactor(relaxFactor)
{ {
mLastSleep = (uint32_t)mMinSleep ; mLastSleep = (uint32_t)mMinSleep ;
mLastWork = time(NULL) ;
} }
void RsQueueThread::run() void RsQueueThread::run()