mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
blockchain_export: fix buffer overflow in exporter
Coverity 182550
This commit is contained in:
parent
f3f7da624d
commit
24803ed91f
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ void BlocksdatFile::write_block(const crypto::hash& block_hash)
|
||||||
{
|
{
|
||||||
crypto::hash hash;
|
crypto::hash hash;
|
||||||
crypto::cn_fast_hash(m_hashes.data(), HASH_OF_HASHES_STEP * sizeof(crypto::hash), hash);
|
crypto::cn_fast_hash(m_hashes.data(), HASH_OF_HASHES_STEP * sizeof(crypto::hash), hash);
|
||||||
memmove(m_hashes.data(), m_hashes.data() + HASH_OF_HASHES_STEP * sizeof(crypto::hash), (m_hashes.size() - HASH_OF_HASHES_STEP) * sizeof(crypto::hash));
|
memmove(m_hashes.data(), m_hashes.data() + HASH_OF_HASHES_STEP, (m_hashes.size() - HASH_OF_HASHES_STEP) * sizeof(crypto::hash));
|
||||||
m_hashes.resize(m_hashes.size() - HASH_OF_HASHES_STEP);
|
m_hashes.resize(m_hashes.size() - HASH_OF_HASHES_STEP);
|
||||||
const std::string data(hash.data, sizeof(hash));
|
const std::string data(hash.data, sizeof(hash));
|
||||||
*m_raw_data_file << data;
|
*m_raw_data_file << data;
|
||||||
|
|
Loading…
Reference in a new issue