From: Anselm R. Garbe Date: Tue, 5 Sep 2006 11:20:29 +0000 (+0200) Subject: hotfix X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=25060031a5e9a505c53d8462c087d80013ffdc16 hotfix --- diff --git a/view.c b/view.c index f1be609..8f5ad64 100644 --- a/view.c +++ b/view.c @@ -172,7 +172,9 @@ focusprev(Arg *arg) void growcol(Arg *arg) { - if(!sel || !clients || !clients->next || (arrange != dotile)) + Client *c = getnext(clients); + + if(!sel || !c || !getnext(c->next) || (arrange != dotile)) return; if(sel == getnext(clients)) { if(mw + arg->i > sw - 100)