Browse Source

fix segfault

pull/771/head
Jeff Becker 8 years ago
parent
commit
4688e6d534
  1. 2
      I2PTunnel.cpp

2
I2PTunnel.cpp

@ -751,8 +751,8 @@ namespace client @@ -751,8 +751,8 @@ namespace client
LogPrint(eLogError, "UDP Tunnel: lookup of ", m_RemoteDest, " was cancelled");
return;
}
LogPrint(eLogInfo, "UDP Tunnel: resolved ", m_RemoteDest, " to ", m_RemoteIdent->ToBase32());
m_RemoteIdent = h;
LogPrint(eLogInfo, "UDP Tunnel: resolved ", m_RemoteDest, " to ", m_RemoteIdent->ToBase32());
}
void I2PUDPClientTunnel::HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len)

Loading…
Cancel
Save