ls: check for the index size before using it in visit()

Thanks to k0ga for noticing it!
This commit is contained in:
Quentin Rameau 2016-02-18 15:16:25 +01:00 committed by sin
parent 1024369f2d
commit ee8701d501
1 changed files with 1 additions and 1 deletions

2
ls.c
View File

@ -311,7 +311,7 @@ visit(const struct entry *ent)
dev = ent->dev;
ino = S_ISLNK(ent->mode) ? ent->tino : ent->ino;
for (i = 0; tree[i].ino && i < PATH_MAX; ++i) {
for (i = 0; i < PATH_MAX && tree[i].ino; ++i) {
if (ino == tree[i].ino && dev == tree[i].dev)
return -1;
}