Changeset abd36f7 in mainline


Ignore:
Timestamp:
2008-11-29T13:23:15Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b17186d
Parents:
890793b
Message:

Do not clear the last byte written to a FAT file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_fat.c

    r890793b rabd36f7  
    183183
    184184        /* zero out already allocated space */
    185         for (o = nodep->size - 1; o < pos && o < boundary;
     185        for (o = nodep->size; o < pos && o < boundary;
    186186            o = ALIGN_DOWN(o + bps, bps)) {
    187187                int flags = (o % bps == 0) ?
Note: See TracChangeset for help on using the changeset viewer.