Changeset 190c943 in mainline
- Timestamp:
- 2011-12-08T11:11:13Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1adbf90
- Parents:
- 24df3834 (diff), b741888 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_directory.c
r24df3834 r190c943 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 … … 434 434 int rc, count; 435 435 exfat_dentry_t *de; 436 437 di->pos = pos; 436 438 437 439 rc = exfat_directory_get(di, &de);
Note:
See TracChangeset
for help on using the changeset viewer.