mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-17 00:07:44 +00:00
#147 Fixed comparability with monero-stratum.
This commit is contained in:
parent
a3297b9ea4
commit
f9202c6951
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ public:
|
|||
}
|
||||
|
||||
const size_t size = strlen(id);
|
||||
if (size < 4 || size >= sizeof(m_data)) {
|
||||
if (size >= sizeof(m_data)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue