Changeset b741888 in mainline for uspace/srv/fs/exfat/exfat_directory.c
- Timestamp:
- 2011-12-07T20:13:06Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 055be8a, 190c943
- Parents:
- 78257fe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_directory.c
r78257fe rb741888 101 101 { 102 102 uint32_t i; 103 int rc ;103 int rc = EOK; 104 104 105 105 i = (di->pos * sizeof(exfat_dentry_t)) / BPS(di->bs); … … 108 108 109 109 if (di->b && di->bnum != i) { 110 block_put(di->b);110 rc = block_put(di->b); 111 111 di->b = NULL; 112 112 } … … 126 126 di->bnum = i; 127 127 } 128 return EOK;128 return rc; 129 129 } 130 130
Note:
See TracChangeset
for help on using the changeset viewer.