mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 04:54:14 +01:00
Free environment vars after loading config
Thanks @SyedAmerGilani
This commit is contained in:
parent
79f9d93ef3
commit
1ec8e082a2
@ -71,8 +71,8 @@ static const char *search_paths[] = {
|
||||
};
|
||||
|
||||
static char *get_config_path() {
|
||||
char *home = getenv("HOME");
|
||||
char *config = getenv("XDG_CONFIG_HOME");
|
||||
char *home = strdup(getenv("HOME"));
|
||||
char *config = strdup(getenv("XDG_CONFIG_HOME"));
|
||||
if (!config) {
|
||||
const char *def = "/.config/sway";
|
||||
config = malloc(strlen(home) + strlen(def) + 1);
|
||||
@ -130,6 +130,8 @@ static char *get_config_path() {
|
||||
|
||||
_continue:
|
||||
free_config(temp_config);
|
||||
free(home);
|
||||
free(config);
|
||||
return test;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user