diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-02-05 01:59:40 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-02-05 01:59:40 -0500 |
| commit | f70a2dd370aa53fa45d054e4a490a12c8b4bd2b6 (patch) | |
| tree | 2d2e2affc4c11bd8a95c511345d065ccfa9e7592 | |
| parent | 3d6eec393a578c59aca28bd3a36352385c8246bc (diff) | |
load_include_configs: fix wordexp fail condition
This fixes the failure condition for the wordexp call in
load_include_configs. The only success value is zero. Since the error
codes are positive, having the check be less than zero was causing
segfaults on failure when accessing the words.
| -rw-r--r-- | sway/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c index ee1c42df..0c23fad8 100644 --- a/sway/config.c +++ b/sway/config.c @@ -557,7 +557,7 @@ bool load_include_configs(const char *path, struct sway_config *config, wordexp_t p; - if (wordexp(path, &p, 0) < 0) { + if (wordexp(path, &p, 0) != 0) { free(parent_path); free(wd); return false; |
