1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-04 19:14:26 +00:00

Fix openwrt crashing on regeneratehash() by making check_solve a noop.

This commit is contained in:
Con Kolivas 2012-06-16 09:22:11 +10:00
parent 3c0544ad55
commit 8faf3c90b8

View File

@ -2178,6 +2178,8 @@ static bool stale_work(struct work *work, bool share)
static void check_solve(struct work *work)
{
#ifndef MIPSEB
/* This segfaults on openwrt */
work->block = regeneratehash(work);
if (unlikely(work->block)) {
work->pool->solved++;
@ -2185,6 +2187,7 @@ static void check_solve(struct work *work)
work->mandatory = true;
applog(LOG_NOTICE, "Found block for pool %d!", work->pool);
}
#endif
}
static void *submit_work_thread(void *userdata)