1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Only check for the stratum clean message if we have had a valid message.

This commit is contained in:
Con Kolivas 2013-11-08 14:23:18 +11:00 committed by Noel Maersk
parent d38802a68f
commit 75c5ac0457

View File

@ -5157,8 +5157,7 @@ static void *stratum_rthread(void *userdata)
if (!parse_method(pool, s) && !parse_stratum_response(pool, s)) if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
applog(LOG_INFO, "Unknown stratum msg: %s", s); applog(LOG_INFO, "Unknown stratum msg: %s", s);
free(s); else if (pool->swork.clean) {
if (pool->swork.clean) {
struct work *work = make_work(); struct work *work = make_work();
/* Generate a single work item to update the current /* Generate a single work item to update the current
@ -5171,6 +5170,7 @@ static void *stratum_rthread(void *userdata)
test_work_current(work); test_work_current(work);
free_work(work); free_work(work);
} }
free(s);
} }
out: out: