mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 15:27:53 +00:00
Repeating on timeout in ztex could make the code never return.
This commit is contained in:
parent
567751410e
commit
a916be0b09
@ -618,8 +618,7 @@ int libztex_sendHashData(struct libztex_device *ztex, unsigned char *sendbuf)
|
|||||||
ret -= cnt;
|
ret -= cnt;
|
||||||
len += cnt;
|
len += cnt;
|
||||||
} else
|
} else
|
||||||
if (cnt != LIBUSB_ERROR_TIMEOUT)
|
break;
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
if (unlikely(cnt < 0))
|
if (unlikely(cnt < 0))
|
||||||
applog(LOG_ERR, "%s: Failed sendHashData with err %d", ztex->repr, cnt);
|
applog(LOG_ERR, "%s: Failed sendHashData with err %d", ztex->repr, cnt);
|
||||||
@ -647,8 +646,7 @@ int libztex_readHashData(struct libztex_device *ztex, struct libztex_hash_data n
|
|||||||
ret -= cnt;
|
ret -= cnt;
|
||||||
len += cnt;
|
len += cnt;
|
||||||
} else
|
} else
|
||||||
if (cnt != LIBUSB_ERROR_TIMEOUT)
|
break;
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (unlikely(cnt < 0)) {
|
if (unlikely(cnt < 0)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user