RsLoginHelper::attemptLogin clear cached passphrase after usage

Thanks Cyril for suggestion
This commit is contained in:
Gioacchino Mazzurco 2018-08-28 14:35:29 +02:00
parent 4bc6919ba9
commit 3094146c13
No known key found for this signature in database
GPG Key ID: A1FBCA3872E87051

View File

@ -1940,10 +1940,11 @@ RsInit::LoadCertificateStatus RsLoginHelper::attemptLogin(
if(!rsNotify->cachePgpPassphrase(password)) return RsInit::ERR_UNKOWN; if(!rsNotify->cachePgpPassphrase(password)) return RsInit::ERR_UNKOWN;
if(!rsNotify->setDisableAskPassword(true)) return RsInit::ERR_UNKOWN; if(!rsNotify->setDisableAskPassword(true)) return RsInit::ERR_UNKOWN;
if(!RsAccounts::SelectAccount(account)) return RsInit::ERR_UNKOWN; if(!RsAccounts::SelectAccount(account)) return RsInit::ERR_UNKOWN;
std::string ignore; std::string _ignore_lockFilePath;
RsInit::LoadCertificateStatus ret = RsInit::LoadCertificateStatus ret =
RsInit::LockAndLoadCertificates(false, ignore); RsInit::LockAndLoadCertificates(false, _ignore_lockFilePath);
rsNotify->setDisableAskPassword(false); if(!rsNotify->setDisableAskPassword(false)) return RsInit::ERR_UNKOWN;
if(!rsNotify->clearPgpPassphrase()) return RsInit::ERR_UNKOWN;
if(ret != RsInit::OK) return ret; if(ret != RsInit::OK) return ret;
if(RsControl::instance()->StartupRetroShare() == 1) return RsInit::OK; if(RsControl::instance()->StartupRetroShare() == 1) return RsInit::OK;
return RsInit::ERR_UNKOWN; return RsInit::ERR_UNKOWN;