mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-08 22:13:48 +01:00
fixed crash
This commit is contained in:
parent
48289845df
commit
e0b19a6383
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ namespace data
|
||||||
LogPrint (eLogError, "Destination for local LeaseSet doesn't exist");
|
LogPrint (eLogError, "Destination for local LeaseSet doesn't exist");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
m_Buffer = new uint8_t[localDestination->GetIdentity ().GetFullLen ()];
|
m_Buffer = new uint8_t[MAX_LS_BUFFER_SIZE];
|
||||||
m_BufferLen = localDestination->GetIdentity ().ToBuffer (m_Buffer, MAX_LS_BUFFER_SIZE);
|
m_BufferLen = localDestination->GetIdentity ().ToBuffer (m_Buffer, MAX_LS_BUFFER_SIZE);
|
||||||
memcpy (m_Buffer + m_BufferLen, localDestination->GetEncryptionPublicKey (), 256);
|
memcpy (m_Buffer + m_BufferLen, localDestination->GetEncryptionPublicKey (), 256);
|
||||||
m_BufferLen += 256;
|
m_BufferLen += 256;
|
||||||
|
|
Loading…
Add table
Reference in a new issue