hotfix of a serious crashing bug

This commit is contained in:
arg@mig29 2006-12-04 21:00:26 +01:00
parent 760e23dd3a
commit 7009ebfa69
3 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# dwm version
VERSION = 2.5
VERSION = 2.5.1
# Customize below to fit your system

3
tag.c
View File

@ -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();
}

3
view.c
View File

@ -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();
}