Fix infinite loop typo.

This commit is contained in:
Adam Ierymenko 2015-07-27 17:14:49 -07:00
parent f0003ea922
commit fadb291962

View File

@ -72,10 +72,12 @@ public:
inline std::vector< std::pair<Address,InetAddress> > getReportedSurface() const inline std::vector< std::pair<Address,InetAddress> > getReportedSurface() const
{ {
std::vector< std::pair<Address,InetAddress> > r; std::vector< std::pair<Address,InetAddress> > r;
{
Mutex::Lock _l(_phy_m); Mutex::Lock _l(_phy_m);
r.reserve(_phy.size()); r.reserve(_phy.size());
for(std::map< PhySurfaceKey,PhySurfaceEntry >::const_iterator p(_phy.begin());p!=_phy.end();) for(std::map< PhySurfaceKey,PhySurfaceEntry >::const_iterator p(_phy.begin());p!=_phy.end();++p)
r.push_back(std::pair<Address,InetAddress>(p->first.reporter,p->second.mySurface)); r.push_back(std::pair<Address,InetAddress>(p->first.reporter,p->second.mySurface));
}
return r; return r;
} }