wallet_rpc_server: fix crash in validate_address if no wallet is loaded

Reported by SmajeNz0
This commit is contained in:
moneromooo-monero 2019-04-24 17:27:44 +00:00
parent 475481949a
commit 968848a77b
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 2 additions and 1 deletions

View File

@ -4067,9 +4067,10 @@ namespace tools
{ cryptonote::TESTNET, "testnet" },
{ cryptonote::STAGENET, "stagenet" },
};
if (!req.any_net_type && !m_wallet) return not_open(er);
for (const auto &net_type: net_types)
{
if (!req.any_net_type && net_type.type != m_wallet->nettype())
if (!req.any_net_type && (!m_wallet || net_type.type != m_wallet->nettype()))
continue;
if (req.allow_openalias)
{