Free environment vars after loading config

Thanks @SyedAmerGilani
This commit is contained in:
Drew DeVault 2015-08-19 08:22:18 -04:00
parent 79f9d93ef3
commit 1ec8e082a2

View File

@ -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;
}