Browse Source

Revert "Free stratum buffers added to the work struct when freeing work ram."

This reverts commit 13fdff6531a6586dadebff913d85252577fb5bb7.

Not always allocated... needs some more thought.
Con Kolivas 13 years ago
parent
commit
fab9ff3cb7
1 changed files with 0 additions and 5 deletions
  1. 0 5
      cgminer.c

+ 0 - 5
cgminer.c

@@ -2206,11 +2206,6 @@ static struct work *make_work(void)
 
 static void free_work(struct work *work)
 {
-	if (work->stratum) {
-		free(work->job_id);
-		free(work->nonce2);
-		free(work->ntime);
-	}
 	free(work);
 }