Fix an off-by-one error in getvfsent().

Detected by: phkmalloc :)
This commit is contained in:
Joerg Wunsch 1996-10-26 21:53:21 +00:00
parent 66e7fce7ac
commit 55e0d3b7cf
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ getvfsent(void)
}
do {
if(_vfs_index > _vfslistlen) {
if(_vfs_index >= _vfslistlen) {
return 0;
}