about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-11-02 17:04:40 +0100
committerAnselm R. Garbe <garbeam@gmail.com>2007-11-02 17:04:40 +0100
commita98b5e59359173111322171187ccfd951df85a38 (patch)
tree36ebcc598304354dbdaacd690c78b38ba67e7df3
parentb8985dc7bb8ef309a66edea541f8e4b8bc5d6381 (diff)
downloaddwm-a98b5e59359173111322171187ccfd951df85a38.tar.gz
made error handling more proper
-rw-r--r--dwm.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/dwm.c b/dwm.c
index 77727a8..c595a51 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1302,8 +1302,13 @@ run(void) {
 		if(FD_ISSET(STDIN_FILENO, &rd)) {
 			if(stext == fgets(stext, sizeof stext - 1, stdin))
 				stext[strlen(stext) - 1] = '\0'; /* remove tailing '\n' */
-			else
-				strncpy(stext, strerror(errno), sizeof stext - 1);
+			else {
+				readin = False;
+				if(feof(stdin))
+					strncpy(stext, "EOF", 4);
+				else /* error occured */
+					strncpy(stext, strerror(errno), sizeof stext - 1);
+			}
 			drawbar();
 		}
 		while(XPending(dpy)) {
2c2faf6b7b68a06b6b432'>b0bf5321 ^
bc643692 ^

385d3080 ^
263e6b2a ^



385d3080 ^

e06dbec0 ^
385d3080 ^






b24eb476 ^
385d3080 ^

5937f1af ^
3473c63a ^








9dcbec39 ^
385d3080 ^
3473c63a ^




385d3080 ^

b24eb476 ^
385d3080 ^

1b76245c ^
263e6b2a ^
385d3080 ^

dfc6e268 ^



1ead3562 ^
b0bf5321 ^
bc643692 ^

dfc6e268 ^
5f98a10c ^

dfc6e268 ^





385d3080 ^

b24eb476 ^
385d3080 ^
ae256ea1 ^
385d3080 ^


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