Merge pull request #2142
02d66db4
tx_pool: initialize padding in txpool meta structure (moneromooo-monero)0722aea3
cryptonote_core: initialize checkpoint flag (moneromooo-monero)
This commit is contained in:
commit
42fc89b672
|
@ -78,6 +78,7 @@ namespace cryptonote
|
|||
m_last_json_checkpoints_update(0),
|
||||
m_update_download(0)
|
||||
{
|
||||
m_checkpoints_updating.clear();
|
||||
set_cryptonote_protocol(pprotocol);
|
||||
}
|
||||
void core::set_cryptonote_protocol(i_cryptonote_protocol* pprotocol)
|
||||
|
|
|
@ -225,6 +225,7 @@ namespace cryptonote
|
|||
meta.last_relayed_time = time(NULL);
|
||||
meta.relayed = relayed;
|
||||
meta.do_not_relay = do_not_relay;
|
||||
memset(meta.padding, 0, sizeof(meta.padding));
|
||||
try
|
||||
{
|
||||
CRITICAL_REGION_LOCAL1(m_blockchain);
|
||||
|
@ -261,6 +262,7 @@ namespace cryptonote
|
|||
meta.last_relayed_time = time(NULL);
|
||||
meta.relayed = relayed;
|
||||
meta.do_not_relay = do_not_relay;
|
||||
memset(meta.padding, 0, sizeof(meta.padding));
|
||||
|
||||
try
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue