From a8a2375c449c18509c1c98c9fad972f3d9ec78fd Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Tue, 17 Sep 2013 18:47:45 +0200 Subject: [PATCH] Don't segfault when there's no target in If --- openbox/actions/if.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openbox/actions/if.c b/openbox/actions/if.c index a083d48..67d067e 100644 --- a/openbox/actions/if.c +++ b/openbox/actions/if.c @@ -327,7 +327,10 @@ static gboolean run_func_if(ObActionsData *data, gpointer options) } /* If there's no client to query, then false. */ - is_true &= query_target != NULL; + if (!query_target) { + is_true = FALSE; + break; + } if (q->shaded_on) is_true &= query_target->shaded; -- 1.9.1