mirror of
https://github.com/swaywm/sway.git
synced 2024-11-25 09:21:28 +00:00
moved ipc_init above config file processing.
This is necessary because commands in the config file (mode for instance) emit ipc events, and if ipc_init has not been called the ipc_clients_list is not initialized, and we segfault. This fixes that bug.
This commit is contained in:
parent
2d22a6fa1e
commit
73e3f0e046
|
@ -213,6 +213,8 @@ int main(int argc, char **argv) {
|
|||
|
||||
init_layout();
|
||||
|
||||
ipc_init();
|
||||
|
||||
if (validate) {
|
||||
bool valid = load_main_config(config_path, false);
|
||||
return valid ? 0 : 1;
|
||||
|
@ -226,8 +228,6 @@ int main(int argc, char **argv) {
|
|||
free(config_path);
|
||||
}
|
||||
|
||||
ipc_init();
|
||||
|
||||
if (!terminate_request) {
|
||||
wlc_run();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue