fixed a core dump
2c0d1cc87bf084ed3f1cdb4be881fb4f64f5773a
375a251d16de567b6c62cce208f388cd16e0ce0f
@@ -52,7 +52,6 @@ { if (!issel) return; Client *old = sel; - XEvent ev; sel = c; if(old && old != c)
@@ -52,7 +52,6 @@ {
@@ -211,8 +211,10 @@ f++; else m++; } - - n = 2 * (f + m); + if(!(n = 2 * (f + m))) { + drawstatus(); + return; + } if(nwins < n) { nwins = n; wins = erealloc(wins, nwins * sizeof(Window));
@@ -211,8 +211,10 @@ f++;