1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-27 17:16:20 +02:00

Merge pull request #703 from thuck/variables_corner_cases

Fix segfault when using include with *
This commit is contained in:
Drew DeVault 2016-06-06 16:40:10 -04:00
commit b63b01156a

View File

@ -388,6 +388,11 @@ static bool load_include_config(const char *path, const char *parent_dir, struct
char *real_path = realpath(full_path, NULL);
free(full_path);
if (real_path == NULL) {
sway_log(L_DEBUG, "%s not found.", path);
return false;
}
// check if config has already been included
int j;
for (j = 0; j < config->config_chain->length; ++j) {