mirror of
https://github.com/GOSTSec/sgminer
synced 2025-02-05 11:34:16 +00:00
Bugfix: Free filename entry for writing config file when done with it
This commit is contained in:
parent
e0b0a6c030
commit
1a8fe32e4c
@ -2605,6 +2605,7 @@ retry:
|
||||
struct stat statbuf;
|
||||
|
||||
strcpy(filename, str);
|
||||
free(str);
|
||||
if (!stat(filename, &statbuf)) {
|
||||
wlogprint("File exists, overwrite?\n");
|
||||
input = getch();
|
||||
@ -2612,6 +2613,8 @@ retry:
|
||||
goto retry;
|
||||
}
|
||||
}
|
||||
else
|
||||
free(str);
|
||||
fcfg = fopen(filename, "w");
|
||||
if (!fcfg) {
|
||||
wlogprint("Cannot open or create file\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user