aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-09-16 10:19:14 -0400
committerLibravatar GitHub <noreply@github.com>2018-09-16 10:19:14 -0400
commit5192f74be132a563e30b240415b385e67cbacadb (patch)
tree5e6e36a9f7ca8bf6a9fb42f1c2f3ad223b86151f
parentMerge pull request #2638 from RyanDwyer/fix-tab-unmap-crash (diff)
parentFix crash when destroying an idle-inhibiting client (diff)
downloadsway-5192f74be132a563e30b240415b385e67cbacadb.tar.gz
sway-5192f74be132a563e30b240415b385e67cbacadb.tar.zst
sway-5192f74be132a563e30b240415b385e67cbacadb.zip
Merge pull request #2641 from marienz/inhibit-crash
Fix crash when an idle-inhibiting client exits
-rw-r--r--sway/desktop/idle_inhibit_v1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/idle_inhibit_v1.c b/sway/desktop/idle_inhibit_v1.c
index da17d0f2..17d4242b 100644
--- a/sway/desktop/idle_inhibit_v1.c
+++ b/sway/desktop/idle_inhibit_v1.c
@@ -44,7 +44,7 @@ void idle_inhibit_v1_check_active(
44 struct sway_idle_inhibitor_v1 *inhibitor; 44 struct sway_idle_inhibitor_v1 *inhibitor;
45 bool inhibited = false; 45 bool inhibited = false;
46 wl_list_for_each(inhibitor, &manager->inhibitors, link) { 46 wl_list_for_each(inhibitor, &manager->inhibitors, link) {
47 if (!inhibitor->view) { 47 if (!inhibitor->view || !inhibitor->view->container) {
48 /* Cannot guess if view is visible so assume it is */ 48 /* Cannot guess if view is visible so assume it is */
49 inhibited = true; 49 inhibited = true;
50 break; 50 break;