From: Mikael Magnusson Date: Mon, 25 Jul 2005 14:15:16 +0000 (+0000) Subject: add a (temporary?) check to client_activate to make client_list_menu not crash openbo... X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=03cad5d97cedc87728ec1ba8e39cbdba12ad756c;p=chaz%2Fopenbox add a (temporary?) check to client_activate to make client_list_menu not crash openbox when selecting a window that has closed since the menu opened --- diff --git a/openbox/client.c b/openbox/client.c index 59622c3d..4d6a5807 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2788,6 +2788,9 @@ void client_unfocus(ObClient *self) void client_activate(ObClient *self, gboolean here) { + /* This check is for the client_list_menu trying to activate + * a closed client. */ + if (!g_list_find(client_list, self)) return; if (client_normal(self) && screen_showing_desktop) screen_show_desktop(FALSE); if (self->iconic)