Browse Source

Merge branch 'master' of git@github.com:pshep/cgminer.git

Paul Sheppard 14 years ago
parent
commit
9bb1a3c0a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cgminer.c

+ 1 - 1
cgminer.c

@@ -2623,7 +2623,7 @@ void write_config(FILE *fcfg)
 
 	/* Write pool values in priority order */
 	fputs("{\n\"pools\" : [", fcfg);
-	while(j < total_pools) {
+	while((j < total_pools) && (i < total_pools)) {
 	    if(pools[i]->prio == j) {
 		    fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "", pools[i]->rpc_url);
 		    fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", pools[i]->rpc_user);