Changeset 50f9c3a in mainline
- Timestamp:
- 2010-01-15T19:32:14Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 61c0402, 963462af
- Parents:
- 42fa698
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_fat.c
r42fa698 r50f9c3a 398 398 * from the size of the file allocation table. 399 399 */ 400 if ((cl - 2) * bs->spc + ssa >= ts) {400 if ((cl >= 2) && ((cl - 2) * bs->spc + ssa >= ts)) { 401 401 rc = block_put(blk); 402 402 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.