Fix crash when share is found before pool login
This commit is contained in:
parent
dfaca04167
commit
fb0b638cbb
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ int64_t xmrig::Client::send(const rapidjson::Value &obj)
|
||||||
int64_t xmrig::Client::submit(const JobResult &result)
|
int64_t xmrig::Client::submit(const JobResult &result)
|
||||||
{
|
{
|
||||||
# ifndef XMRIG_PROXY_PROJECT
|
# ifndef XMRIG_PROXY_PROJECT
|
||||||
if (result.clientId != m_rpcId || m_state != ConnectedState) {
|
if (result.clientId != m_rpcId || m_rpcId.isNull() || m_state != ConnectedState) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue