mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-10 23:08:07 +00:00
Icarus needs not +2 for realloc, just +1.
This commit is contained in:
parent
e30e2f783a
commit
e53c033aa8
@ -421,7 +421,7 @@ static bool icarus_detect_one(const char *devpath)
|
||||
icarus->device_path = strdup(devpath);
|
||||
icarus->threads = 1;
|
||||
add_cgpu(icarus);
|
||||
icarus_info = realloc(icarus_info, sizeof(struct ICARUS_INFO *) * (total_devices + 2));
|
||||
icarus_info = realloc(icarus_info, sizeof(struct ICARUS_INFO *) * (total_devices + 1));
|
||||
|
||||
applog(LOG_INFO, "Found Icarus at %s, mark as %d",
|
||||
devpath, icarus->device_id);
|
||||
|
Loading…
Reference in New Issue
Block a user