From c225bcaceeda6902a56481962398f5a528bcdf74 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Fri, 29 Apr 2016 18:06:21 +0100 Subject: sway/config.c: config_home is the result of a malloc but was never freed --- sway/config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sway/config.c b/sway/config.c index ebcee95b..06654223 100644 --- a/sway/config.c +++ b/sway/config.c @@ -267,6 +267,7 @@ static char *get_config_path(void) { strcpy(config_home, home); strcat(config_home, "/.config"); setenv("XDG_CONFIG_HOME", config_home, 1); + free(config_home); sway_log(L_DEBUG, "Set XDG_CONFIG_HOME to %s", config_home); } -- cgit v1.2.3-54-g00ecf