Changeset 60b8b99 in mainline
- Timestamp:
- 2012-03-06T09:17:42Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2f2feadb
- Parents:
- 2f619d5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_directory_index.c
r2f619d5 r60b8b99 787 787 } 788 788 789 // TODO check rc handling 789 790 791 790 792 rc = block_put(new_block); 791 793 if (rc != EOK) { 792 794 EXT4FS_DBG("error writing new block"); 793 }794 795 return rc; 796 } 795 797 796 798 release_target_index: … … 801 803 if (rc != EOK) { 802 804 EXT4FS_DBG("error writing target block"); 803 //return rc;805 return rc; 804 806 } 805 807 806 808 release_index: 809 810 if (rc != EOK) { 811 rc2 = rc; 812 } 813 807 814 dx_it = dx_blocks; 808 815 … … 811 818 if (rc != EOK) { 812 819 EXT4FS_DBG("error writing index block"); 813 //return rc;820 return rc; 814 821 } 815 822 dx_it++;
Note:
See TracChangeset
for help on using the changeset viewer.