1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-24 06:04:16 +00:00

fixed race condition

This commit is contained in:
orignal 2016-08-09 20:51:54 -04:00 committed by GitHub
parent 35e8a027ad
commit 8e835f2f6b

View File

@ -752,7 +752,8 @@ namespace data
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetAddress (TransportStyle s, bool v4only, bool v6only) const
{
for (const auto& address : *m_Addresses)
auto addresses = m_Addresses;
for (const auto& address : *addresses)
{
if (address->transportStyle == s)
{