From 92a884f12ac081630bc6efa2cb9089e4240f39c7 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 13 Sep 2014 22:54:40 +1000 Subject: [PATCH] No valid workinfo should be a share error not a share --- src/stratifier.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stratifier.c b/src/stratifier.c index bda81e22..c3e07a68 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -1906,8 +1906,6 @@ static json_t *parse_submit(stratum_instance_t *client, json_t *json_msg, sscanf(job_id, "%lx", &id); sscanf(ntime, "%x", &ntime32); - share = true; - ck_rlock(&workbase_lock); HASH_FIND_I64(workbases, &id, wb); if (unlikely(!wb)) { @@ -1915,8 +1913,10 @@ static json_t *parse_submit(stratum_instance_t *client, json_t *json_msg, json_set_string(json_msg, "reject-reason", SHARE_ERR(err)); strcpy(idstring, job_id); ASPRINTF(&fname, "%s.sharelog", current_workbase->logdir); - goto out_unlock; + ck_runlock(&workbase_lock); + goto out; } + share = true; wdiff = wb->diff; strcpy(idstring, wb->idstring); ASPRINTF(&fname, "%s.sharelog", wb->logdir);