Browse Source

Free sessionid in clean_work and remove redundant setting of strings to NULL since the whole work struct is zeroed.

Con Kolivas 13 years ago
parent
commit
16c7c983ae
1 changed files with 1 additions and 4 deletions
  1. 1 4
      cgminer.c

+ 1 - 4
cgminer.c

@@ -1380,10 +1380,7 @@ void clean_work(struct work *work)
 	free(work->nonce2);
 	free(work->ntime);
 	free(work->gbt_coinbase);
-	work->job_id = NULL;
-	work->nonce2 = NULL;
-	work->ntime = NULL;
-	work->gbt_coinbase = NULL;
+	free(work->sessionid);
 	memset(work, 0, sizeof(struct work));
 }