sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 1ec8e082a2693418b79071e052e45a040baab009
parent 79f9d93ef3581f399173e91db464137d77877c99
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 19 Aug 2015 08:22:18 -0400

Free environment vars after loading config

Thanks @SyedAmerGilani

Diffstat:
Msway/config.c | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sway/config.c b/sway/config.c @@ -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; }