1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-02 06:54:15 +00:00

Fixed memory leak: delete -> delete[]

This commit is contained in:
Robert Foss 2015-04-07 22:26:35 +02:00
parent 3983838694
commit 2c480bee9a
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ namespace data
RouterInfo::~RouterInfo () RouterInfo::~RouterInfo ()
{ {
delete m_Buffer; delete[] m_Buffer;
} }
void RouterInfo::Update (const uint8_t * buf, int len) void RouterInfo::Update (const uint8_t * buf, int len)

View File

@ -142,7 +142,7 @@ namespace data
void SaveProfile () { if (m_Profile) m_Profile->Save (); }; void SaveProfile () { if (m_Profile) m_Profile->Save (); };
void Update (const uint8_t * buf, int len); void Update (const uint8_t * buf, int len);
void DeleteBuffer () { delete m_Buffer; m_Buffer = nullptr; }; void DeleteBuffer () { delete[] m_Buffer; m_Buffer = nullptr; };
// implements RoutingDestination // implements RoutingDestination
const IdentHash& GetIdentHash () const { return m_RouterIdentity.GetIdentHash (); }; const IdentHash& GetIdentHash () const { return m_RouterIdentity.GetIdentHash (); };