mirror of https://github.com/xzeldon/htop.git
Fix resource leak.
This commit is contained in:
parent
eb1cd4aca6
commit
4e2c2d7927
|
@ -265,7 +265,6 @@ Settings* Settings_new(ProcessList* pl, Header* header, int cpuCount) {
|
|||
// Transition to new location and delete old configuration file
|
||||
if (Settings_write(this))
|
||||
unlink(legacyDotfile);
|
||||
free(legacyDotfile);
|
||||
}
|
||||
} else {
|
||||
this->changed = true;
|
||||
|
@ -280,5 +279,6 @@ Settings* Settings_new(ProcessList* pl, Header* header, int cpuCount) {
|
|||
pl->highlightThreads = false;
|
||||
}
|
||||
}
|
||||
free(legacyDotfile);
|
||||
return this;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue