Browse Source

Bugfix: Free filename entry for writing config file when done with it

nfactor-troky
Luke Dashjr 12 years ago
parent
commit
1a8fe32e4c
  1. 3
      cgminer.c

3
cgminer.c

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

Loading…
Cancel
Save