mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-07 22:22:45 -04:00
Fixed unitialized member on ftFileControl.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8471 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
fa4ce9a913
commit
e30e0e1f8b
1 changed files with 2 additions and 2 deletions
|
@ -82,7 +82,7 @@ const uint32_t FT_CNTRL_SLOW_RATE = 100 * 1024;
|
||||||
|
|
||||||
ftFileControl::ftFileControl()
|
ftFileControl::ftFileControl()
|
||||||
:mTransfer(NULL), mCreator(NULL),
|
:mTransfer(NULL), mCreator(NULL),
|
||||||
mState(DOWNLOADING), mSize(0), mFlags(0)
|
mState(DOWNLOADING), mSize(0), mFlags(0), mCreateTime(0), mQueuePriority(0), mQueuePosition(0)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -93,7 +93,7 @@ ftFileControl::ftFileControl(std::string fname,
|
||||||
ftFileCreator *fc, ftTransferModule *tm)
|
ftFileCreator *fc, ftTransferModule *tm)
|
||||||
:mName(fname), mCurrentPath(tmppath), mDestination(dest),
|
:mName(fname), mCurrentPath(tmppath), mDestination(dest),
|
||||||
mTransfer(tm), mCreator(fc), mState(DOWNLOADING), mHash(hash),
|
mTransfer(tm), mCreator(fc), mState(DOWNLOADING), mHash(hash),
|
||||||
mSize(size), mFlags(flags)
|
mSize(size), mFlags(flags), mCreateTime(0), mQueuePriority(0), mQueuePosition(0)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue