Browse Source

Merge pull request #375 from luke-jr/bugfix_cfgwrite_fnleak

Free filename entry for writing config file when done with it
Con Kolivas 13 years ago
parent
commit
5c32a47b96
1 changed files with 3 additions and 0 deletions
  1. 3 0
      cgminer.c

+ 3 - 0
cgminer.c

@@ -4324,6 +4324,7 @@ retry:
 			struct stat statbuf;
 
 			strcpy(filename, str);
+			free(str);
 			if (!stat(filename, &statbuf)) {
 				wlogprint("File exists, overwrite?\n");
 				input = getch();
@@ -4331,6 +4332,8 @@ retry:
 					goto retry;
 			}
 		}
+		else
+			free(str);
 		fcfg = fopen(filename, "w");
 		if (!fcfg) {
 			wlogprint("Cannot open or create file\n");