about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-14 10:49:22 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-14 10:49:22 +0200
commit2c0d1cc87bf084ed3f1cdb4be881fb4f64f5773a (patch)
treea4a21bf2ff4747b0b86a979ea765f769705f6968
parent375a251d16de567b6c62cce208f388cd16e0ce0f (diff)
downloaddwm-2c0d1cc87bf084ed3f1cdb4be881fb4f64f5773a.tar.gz
fixed a core dump
-rw-r--r--client.c1
-rw-r--r--tag.c6
2 files changed, 4 insertions, 3 deletions
diff --git a/client.c b/client.c
index ecfd8f0..8d5ea30 100644
--- 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
--- 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));
e <garbeam@wmii.de> 2006-07-13 01:30:55 +0200 committer Anselm R. Garbe <garbeam@wmii.de> 2006-07-13 01:30:55 +0200 removed unnecessary crap' href='/acidbong/suckless/dwm/commit/wm.h?h=2.7&id=8b59083eb13c0712e04d9a5b6d7bf4af5913c442'>8b59083 ^
b9da4b0 ^
3aad922 ^
c47da14 ^




b9da4b0 ^
439e15d ^
3399650 ^
1076f2b

439e15d ^
1076f2b

8b59083 ^







650a1fb ^
8b59083 ^








1076f2b
da2bbd3 ^

3399650 ^
a05beb6 ^
896f08d ^
a05beb6 ^
2e836ec ^

a05beb6 ^
66da153 ^
1076f2b
1076f2b
1076f2b
efa7e51 ^
1076f2b

3aad922 ^



66da153 ^
3aad922 ^

366d81e ^


c47da14 ^

366d81e ^

1076f2b
8b59083 ^
3399650 ^
1076f2b
da2bbd3 ^
66da153 ^

1076f2b
3aad922 ^

39677ec ^
650a1fb ^
efa7e51 ^
39677ec ^
439e15d ^
0053620 ^
3399650 ^



d6e0e6e ^
7fe717c ^
a05beb6 ^
2a0fc84 ^
8b59083 ^
dfd84f9 ^
c47da14 ^





66da153 ^

efa7e51 ^

2e836ec ^
3399650 ^
d7e1708 ^
650a1fb ^
9e8b325 ^




d7e1708 ^
3399650 ^
dfd84f9 ^
439e15d ^
44f2e8b ^
d7e1708 ^
16c67f3 ^
b9da4b0 ^


9e8b325 ^



c47da14 ^
9e8b325 ^
8b59083 ^
d7e1708 ^
8b59083 ^



c47da14 ^
8b59083 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158