JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fixed a core dump
authorAnselm R.Garbe <arg@10ksloc.org>
Mon, 14 Aug 2006 08:49:22 +0000 (10:49 +0200)
committerAnselm R.Garbe <arg@10ksloc.org>
Mon, 14 Aug 2006 08:49:22 +0000 (10:49 +0200)
client.c
tag.c

index ecfd8f0..8d5ea30 100644 (file)
--- a/client.c
+++ b/client.c
@@ -52,7 +52,6 @@ focus(Client *c)
        if (!issel)
                return;
        Client *old = sel;
-       XEvent ev;
 
        sel = c;
        if(old && old != c)
diff --git a/tag.c b/tag.c
index 01979d5..c4d3b34 100644 (file)
--- a/tag.c
+++ b/tag.c
@@ -211,8 +211,10 @@ restack()
                        else
                                m++;
                }
-
-       n = 2 * (f + m);
+       if(!(n = 2 * (f + m))) {
+               drawstatus();
+               return;
+       }
        if(nwins < n) {
                nwins = n;
                wins = erealloc(wins, nwins * sizeof(Window));