From b267261403b99d600c073e1252bffabee7bd45f0 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 14 Jan 2003 22:58:35 +0000 Subject: [PATCH] just return if a valid widget isnt found, racey to assert --- src/actions.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/actions.cc b/src/actions.cc index 10edeec2..5a799a58 100644 --- a/src/actions.cc +++ b/src/actions.cc @@ -74,7 +74,7 @@ void Actions::buttonPressHandler(const XButtonEvent &e) // run the PRESS python hook WidgetBase *w = dynamic_cast (openbox->findHandler(e.window)); - assert(w); // everything should be a widget + if (!w) return; // kill off the Button1Mask etc, only want the modifiers unsigned int state = e.state & (ControlMask | ShiftMask | Mod1Mask | @@ -113,7 +113,7 @@ void Actions::buttonReleaseHandler(const XButtonEvent &e) WidgetBase *w = dynamic_cast (openbox->findHandler(e.window)); - assert(w); // everything should be a widget + if (!w) return; // not for the button we're watching? if (_button != e.button) return; @@ -236,7 +236,7 @@ void Actions::motionHandler(const XMotionEvent &e) WidgetBase *w = dynamic_cast (openbox->findHandler(e.window)); - assert(w); // everything should be a widget + if (!w) return; // run the MOTION python hook // kill off the Button1Mask etc, only want the modifiers -- 2.45.2