fixed memory leak

This commit is contained in:
orignal 2015-02-07 17:58:29 -05:00
parent ab0bd908ec
commit a80e4ef0ea
4 changed files with 10 additions and 1 deletions

View file

@ -743,6 +743,8 @@ namespace util
s << endpoint.address ().to_string () << ":" << endpoint.port ();
if (!outgoing) s << "-->";
s << " [" << it.second->GetNumSentBytes () << ":" << it.second->GetNumReceivedBytes () << "]";
if (it.second->GetRelayTag ())
s << " [itag:" << it.second->GetRelayTag () << "]";
s << "<br>";
s << std::endl;
}