mirror of
https://github.com/xmrig/xmrig.git
synced 2024-10-30 21:17:52 +00:00
Fix compilation on ARMv8 with GCC 9.3.0
This commit is contained in:
parent
6c26e04fbe
commit
f1a24b7ddd
1 changed files with 2 additions and 1 deletions
|
@ -174,7 +174,8 @@ void xmrig::RxDataset::setRaw(const void *raw)
|
|||
return;
|
||||
}
|
||||
|
||||
memcpy(randomx_get_dataset_memory(m_dataset), raw, maxSize());
|
||||
volatile size_t N = maxSize();
|
||||
memcpy(randomx_get_dataset_memory(m_dataset), raw, N);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue