summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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) {
174 if (wordexp(config_paths[i], &p, 0) == 0) { 174 if (wordexp(config_paths[i], &p, 0) == 0) {
175 path = p.we_wordv[0]; 175 path = p.we_wordv[0];
176 if (file_exists(path)) { 176 if (file_exists(path)) {
177 wordfree(&p);
178 return path; 177 return path;
179 } 178 }
180 } 179 }
181 wordfree(&p);
182 } 180 }
183 181
184 return NULL; // Not reached 182 return NULL; // Not reached