Browse Source

fixed typo

pull/151/head
orignal 10 years ago
parent
commit
feffbc9330
  1. 1
      Destination.cpp
  2. 3
      Tunnel.cpp

1
Destination.cpp

@ -139,7 +139,6 @@ namespace client @@ -139,7 +139,6 @@ namespace client
auto ls = i2p::data::netdb.FindLeaseSet (ident);
if (ls)
{
ls = std::make_shared<i2p::data::LeaseSet> (*ls);
m_RemoteLeaseSets[ident] = ls;
return ls;
}

3
Tunnel.cpp

@ -351,9 +351,10 @@ namespace tunnel @@ -351,9 +351,10 @@ namespace tunnel
if (msg)
{
uint32_t prevTunnelID = 0, tunnelID = 0;
TunnelBase * prevTunnel = nullptr, * tunnel = nullptr;
TunnelBase * prevTunnel = nullptr;
do
{
TunnelBase * tunnel = nullptr;
uint8_t typeID = msg->GetTypeID ();
switch (typeID)
{

Loading…
Cancel
Save