Fix compilation on ARMv8 with GCC 9.3.0

This commit is contained in:
SChernykh 2020-11-02 13:50:10 +01:00
parent 6c26e04fbe
commit f1a24b7ddd

View file

@ -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);
}