mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-07 14:12:43 -04:00
Fix Initialisation of Private in RsAccountDetails
This commit is contained in:
parent
52f488c84f
commit
7fd84f28fe
1 changed files with 7 additions and 4 deletions
|
@ -59,14 +59,17 @@ RsAccountsDetail *rsAccounts;
|
||||||
static bool checkAccount(std::string accountdir, AccountDetails &account,std::map<std::string,std::vector<std::string> >& unsupported_keys);
|
static bool checkAccount(std::string accountdir, AccountDetails &account,std::map<std::string,std::vector<std::string> >& unsupported_keys);
|
||||||
|
|
||||||
AccountDetails::AccountDetails()
|
AccountDetails::AccountDetails()
|
||||||
:mIsHiddenLoc(false), mFirstRun(false)
|
:mSslId(""), mAccountDir(""), mPgpId(""), mPgpName(""), mPgpEmail(""),
|
||||||
|
mLocation(""), mIsHiddenLoc(false), mFirstRun(false)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
RsAccountsDetail::RsAccountsDetail()
|
RsAccountsDetail::RsAccountsDetail()
|
||||||
:mAccountsLocked(false)
|
:mAccountsLocked(false), mPreferredId(""), mBaseDirectory("")
|
||||||
{
|
{
|
||||||
|
mAccounts.clear();
|
||||||
|
mUnsupportedKeys.clear();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue