Changeset d8f92868 in mainline


Ignore:
Timestamp:
2009-11-11T10:41:07Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a217358
Parents:
93fbbd26
Message:

fix yet another off-by-one bug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_file.c

    r93fbbd26 rd8f92868  
    111111                        i--;
    112112                } else {
    113                         if (i == MAX_OPEN_FILES)
     113                        if (i == MAX_OPEN_FILES - 1)
    114114                                break;
    115115                       
Note: See TracChangeset for help on using the changeset viewer.