commit bffbe11e530fa37f2421e94463bc2ec4516ba394
parent a7710c5537cb005acaeb2afe9a53bafa3e022817
Author: Drew DeVault <ddevault@linode.com>
Date: Fri, 11 Dec 2015 14:22:28 -0500
Fix config.c strlen error
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/config.c b/sway/config.c
@@ -142,7 +142,7 @@ static char *get_config_path(void) {
if (!getenv("XDG_CONFIG_HOME")) {
char *home = getenv("HOME");
- char *config_home = malloc(strlen("home") + strlen("/.config") + 1);
+ char *config_home = malloc(strlen(home) + strlen("/.config") + 1);
strcpy(config_home, home);
strcat(config_home, "/.config");
setenv("XDG_CONFIG_HOME", config_home, 1);