aboutsummaryrefslogtreecommitdiffstats
path: root/view.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 /view.c
parent760e23dd3acde7276a1171b6a0e454579eb1766a (diff)
downloaddwm-7009ebfa6907b4355bc83310065d86dba4ad129d.tar.zst
hotfix of a serious crashing bug2.5.1
Diffstat (limited to 'view.c')
-rw-r--r--view.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/view.c b/view.c
index 14cfc1d..baa2ac6 100644
--- a/view.c
+++ b/view.c
@@ -234,7 +234,8 @@ view(Arg *arg) {
for(i = 0; i < ntags; i++)
seltag[i] = (arg->i == -1) ? True : False;
- seltag[arg->i] = True;
+ if(arg->i >= 0 && arg->i < ntags)
+ seltag[arg->i] = True;
arrange();
}