Make _members dynamically allocated due to static array limit on ARM.
This commit is contained in:
parent
69dad37d8f
commit
5e6eae620b
2 changed files with 4 additions and 2 deletions
|
@ -56,7 +56,8 @@ Cluster::Cluster(const RuntimeEnvironment *renv,uint16_t id,DistanceAlgorithm da
|
|||
_y(y),
|
||||
_z(z),
|
||||
_da(da),
|
||||
_id(id)
|
||||
_id(id),
|
||||
_members(new _Member[65536])
|
||||
{
|
||||
uint16_t stmp[ZT_SHA512_DIGEST_LEN / sizeof(uint16_t)];
|
||||
|
||||
|
@ -76,6 +77,7 @@ Cluster::~Cluster()
|
|||
{
|
||||
Utils::burn(_masterSecret,sizeof(_masterSecret));
|
||||
Utils::burn(_key,sizeof(_key));
|
||||
delete [] _members;
|
||||
}
|
||||
|
||||
void Cluster::handleIncomingStateMessage(const void *msg,unsigned int len)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue