aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2016-01-04 23:00:56 -0500
committerDrew DeVault <sir@cmpwn.com>2016-01-04 23:00:56 -0500
commitcaaff5ac543e050fe6d2208ac4eac096f80cb86d (patch)
tree9ad4317e4c86bee12c4f88ee8ff371a3d3f2f2f0
parent33b24736c78d9993a26d295ea3e56ad77d6f1390 (diff)
Revert "Free wordexp_t in config.c:get_config_path"
This reverts commit 33b24736c78d9993a26d295ea3e56ad77d6f1390.
-rw-r--r--sway/config.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sway/config.c b/sway/config.c
index c362f388..1973de02 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -174,11 +174,9 @@ static char *get_config_path(void) {
if (wordexp(config_paths[i], &p, 0) == 0) {
path = p.we_wordv[0];
if (file_exists(path)) {
- wordfree(&p);
return path;
}
}
- wordfree(&p);
}
return NULL; // Not reached