From 64a971882a7b3925ed69399c7ea1dc8177f8e295 Mon Sep 17 00:00:00 2001 From: Luminarys Date: Sat, 15 Aug 2015 20:13:18 -0500 Subject: Minor fix to config loading --- sway/config.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sway/config.c b/sway/config.c index 4f576bb9..17a75fbf 100644 --- a/sway/config.c +++ b/sway/config.c @@ -76,7 +76,7 @@ static char* get_config_path() { //Now fall back to i3 paths and try the same thing name = "/.i3/config"; sway_log(L_DEBUG, "Trying to find config in ~/.i3/config"); - char *temp = malloc(strlen(home) + strlen(name) + 1); + temp = malloc(strlen(home) + strlen(name) + 1); strcpy(temp, home); strcat(temp, name); if (exists(temp)) { @@ -84,7 +84,6 @@ static char* get_config_path() { } sway_log(L_DEBUG, "Trying to find config in XDG_CONFIG_HOME/i3/config"); - char *xdg_config_home = getenv("XDG_CONFIG_HOME"); if (xdg_config_home == NULL) { sway_log(L_DEBUG, "Falling back to ~/.config/i3/config"); name = "/.config/i3/config"; @@ -108,7 +107,6 @@ static char* get_config_path() { } sway_log(L_DEBUG, "Trying to find config in XDG_CONFIG_DIRS"); - char *xdg_config_dirs = getenv("XDG_CONFIG_DIRS"); if (xdg_config_dirs != NULL) { list_t *paths = split_string(xdg_config_dirs, ":"); name = "/i3/config"; -- cgit v1.2.3-54-g00ecf