1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

dtcm: Coverity 88955

This commit is contained in:
Peter Howkins 2018-07-13 19:24:11 +01:00
parent f4a5433f32
commit 6d7525e174

View file

@ -798,7 +798,7 @@ bcanvas_event(Widget w, XtPointer client_data, XtPointer call_data)
int x, y, boxw, boxh;
pr_pos xy;
if ((event->type == ButtonRelease) || (event == NULL))
if ((event == NULL) || (event->type == ButtonRelease))
return;
b = (Browser*)c->browser;