sway/config.c: Move the wordfree call before the if statement so it is always called

This commit is contained in:
Daniel Lockyer 2016-04-29 18:36:29 +01:00
parent 06986e58b8
commit e1fa51a152

View file

@ -278,8 +278,8 @@ static char *get_config_path(void) {
for (i = 0; i < (int)(sizeof(config_paths) / sizeof(char *)); ++i) {
if (wordexp(config_paths[i], &p, 0) == 0) {
path = strdup(p.we_wordv[0]);
wordfree(&p);
if (file_exists(path)) {
wordfree(&p);
return path;
}
}