dont deref the client before checking for null
This commit is contained in:
parent
e1b6c6dd90
commit
d4f192394f
1 changed files with 2 additions and 1 deletions
|
@ -1231,11 +1231,12 @@ void action_growtoedge(union ActionData *data)
|
|||
{
|
||||
int x, y, width, height, dest;
|
||||
ObClient *c = data->diraction.any.c;
|
||||
Rect *a = screen_area(c->desktop);
|
||||
Rect *a;
|
||||
|
||||
if (!c)
|
||||
return;
|
||||
|
||||
a = = screen_area(c->desktop);
|
||||
x = c->frame->area.x;
|
||||
y = c->frame->area.y;
|
||||
width = c->frame->area.width;
|
||||
|
|
Loading…
Reference in a new issue