Merge pull request #81 from SyedAmerGilani/fix_xdg_config_home

fixed string building for XDG_CONFIG_HOME config loading
This commit is contained in:
Drew DeVault 2015-08-19 07:00:35 -04:00
commit 5c8daa6487

View File

@ -41,7 +41,7 @@ static char *get_config_path() {
} else { } else {
name = "/sway/config"; name = "/sway/config";
temp = malloc(strlen(xdg_config_home) + strlen(name) + 1); temp = malloc(strlen(xdg_config_home) + strlen(name) + 1);
strcpy(xdg_config_home, home); strcpy(temp, xdg_config_home);
strcat(temp, name); strcat(temp, name);
} }
if (exists(temp)) { if (exists(temp)) {
@ -94,7 +94,7 @@ static char *get_config_path() {
} else { } else {
name = "/i3/config"; name = "/i3/config";
temp = malloc(strlen(xdg_config_home) + strlen(name) + 1); temp = malloc(strlen(xdg_config_home) + strlen(name) + 1);
strcpy(xdg_config_home, home); strcpy(temp, xdg_config_home);
strcat(temp, name); strcat(temp, name);
} }
if (exists(temp)) { if (exists(temp)) {