mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-07 07:44:13 +00:00
fixed crash
This commit is contained in:
parent
a8c08563f1
commit
b9806ac86b
@ -174,12 +174,14 @@ namespace client
|
|||||||
|
|
||||||
void ClientDestination::ProcessGarlicMessage (I2NPMessage * msg)
|
void ClientDestination::ProcessGarlicMessage (I2NPMessage * msg)
|
||||||
{
|
{
|
||||||
m_Service->post (std::bind (&ClientDestination::HandleGarlicMessage, this, msg));
|
if (m_Service)
|
||||||
|
m_Service->post (std::bind (&ClientDestination::HandleGarlicMessage, this, msg));
|
||||||
}
|
}
|
||||||
|
|
||||||
void ClientDestination::ProcessDeliveryStatusMessage (I2NPMessage * msg)
|
void ClientDestination::ProcessDeliveryStatusMessage (I2NPMessage * msg)
|
||||||
{
|
{
|
||||||
m_Service->post (std::bind (&ClientDestination::HandleDeliveryStatusMessage, this, msg));
|
if (m_Service)
|
||||||
|
m_Service->post (std::bind (&ClientDestination::HandleDeliveryStatusMessage, this, msg));
|
||||||
}
|
}
|
||||||
|
|
||||||
void ClientDestination::HandleI2NPMessage (const uint8_t * buf, size_t len, i2p::tunnel::InboundTunnel * from)
|
void ClientDestination::HandleI2NPMessage (const uint8_t * buf, size_t len, i2p::tunnel::InboundTunnel * from)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user