Fixed 32 bit version crash.

This commit is contained in:
XMRig 2017-10-07 20:36:02 +03:00
parent b46f376f32
commit a3297b9ea4

View file

@ -70,6 +70,8 @@ public:
bool operator==(const Job &other) const;
private:
VAR_ALIGN(16, uint8_t m_blob[84]); // Max blob size is 84 (75 fixed + 9 variable), aligned to 96. https://github.com/xmrig/xmrig/issues/1 Thanks fireice-uk.
bool m_nicehash;
int m_poolId;
int m_threadId;
@ -77,7 +79,6 @@ private:
size_t m_size;
uint64_t m_diff;
uint64_t m_target;
VAR_ALIGN(16, uint8_t m_blob[84]); // Max blob size is 84 (75 fixed + 9 variable), aligned to 96. https://github.com/xmrig/xmrig/issues/1 Thanks fireice-uk.
# ifdef XMRIG_PROXY_PROJECT
VAR_ALIGN(16, char m_rawBlob[169]);