diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-03-23 09:44:22 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-03-23 09:44:22 -0400 |
commit | 686530d5e8f21ed146a489ad8a477f9241dfc722 (patch) | |
tree | 60f54a108cdb6ff37a685b1f18c19604d3c93fca | |
parent | a99970d7a3c9482e191af51b9a0d386cac647f66 (diff) | |
parent | a8f989c6516e52ac6fe5380f39c94e470b7892e8 (diff) |
Merge pull request #535 from mikkeloscar/fix-swaylock-crash
swaylock: Fix crash when unable to connect to sway
-rw-r--r-- | swaylock/main.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/swaylock/main.c b/swaylock/main.c index f2015a05..3f0fc867 100644 --- a/swaylock/main.c +++ b/swaylock/main.c @@ -31,7 +31,9 @@ void sway_terminate(int exit_code) { window_teardown(window); } list_free(surfaces); - registry_teardown(registry); + if (registry) { + registry_teardown(registry); + } exit(exit_code); } @@ -292,6 +294,10 @@ int main(int argc, char **argv) { surfaces = create_list(); registry = registry_poll(); + if (!registry) { + sway_abort("Unable to connect to wayland compositor"); + } + if (!registry->swaylock) { sway_abort("swaylock requires the compositor to support the swaylock extension."); } |