Browse Source

Do not attempt to decref a freed passthrough client

master
Con Kolivas 10 years ago
parent
commit
9d06777724
  1. 2
      src/stratifier.c

2
src/stratifier.c

@ -3023,7 +3023,7 @@ static void parse_method(sdata_t *sdata, const int64_t client_id, json_t *id_val
snprintf(buf, 255, "passthrough=%ld", client->id); snprintf(buf, 255, "passthrough=%ld", client->id);
send_proc(client->ckp->connector, buf); send_proc(client->ckp->connector, buf);
free(client); free(client);
goto out; return;
} }
if (cmdmatch(method, "mining.auth") && client->subscribed) { if (cmdmatch(method, "mining.auth") && client->subscribed) {

Loading…
Cancel
Save