about summary refs log tree commit diff stats
path: root/tag.c
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-12-04 21:00:26 +0100
committerarg@mig29 <unknown>2006-12-04 21:00:26 +0100
commit7009ebfa6907b4355bc83310065d86dba4ad129d (patch)
tree33c3d71fe897d7555bba9c87b4cb2cd7d5be3c4c /tag.c
parent760e23dd3acde7276a1171b6a0e454579eb1766a (diff)
downloaddwm-7009ebfa6907b4355bc83310065d86dba4ad129d.tar.gz
hotfix of a serious crashing bug 2.5.1
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tag.c b/tag.c
index 609ce9c..e8ebd8e 100644
--- a/tag.c
+++ b/tag.c
@@ -114,7 +114,8 @@ tag(Arg *arg) {
 		return;
 	for(i = 0; i < ntags; i++)
 		sel->tags[i] = (arg->i == -1) ? True : False;
-	sel->tags[arg->i] = True;
+	if(arg->i >= 0 && arg->i < ntags)
+		sel->tags[arg->i] = True;
 	arrange();
 }