mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
daemon: init public_port in all ctors
Coverity 196596
This commit is contained in:
parent
f2f725d8db
commit
760d3a2a0c
@ -115,6 +115,7 @@ t_daemon::t_daemon(t_daemon && other)
|
|||||||
{
|
{
|
||||||
mp_internals = std::move(other.mp_internals);
|
mp_internals = std::move(other.mp_internals);
|
||||||
other.mp_internals.reset(nullptr);
|
other.mp_internals.reset(nullptr);
|
||||||
|
public_rpc_port = other.public_rpc_port;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -125,6 +126,7 @@ t_daemon & t_daemon::operator=(t_daemon && other)
|
|||||||
{
|
{
|
||||||
mp_internals = std::move(other.mp_internals);
|
mp_internals = std::move(other.mp_internals);
|
||||||
other.mp_internals.reset(nullptr);
|
other.mp_internals.reset(nullptr);
|
||||||
|
public_rpc_port = other.public_rpc_port;
|
||||||
}
|
}
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user