Changeset cf982ff in mainline for uspace/lib/ext4/libext4_filesystem.c
- Timestamp:
- 2014-01-28T21:08:38Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0dd022ec
- Parents:
- 476f62c (diff), 5828554 (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/lib/ext4/libext4_filesystem.c
r476f62c rcf982ff 797 797 } 798 798 799 block_put(block); 799 rc = block_put(block); 800 if (rc != EOK) 801 return rc; 802 800 803 rc = ext4_balloc_free_block(inode_ref, fblock); 801 804 if (rc != EOK) … … 841 844 } 842 845 843 block_put(subblock); 846 rc = block_put(subblock); 847 if (rc != EOK) 848 return rc; 844 849 } 845 850 … … 851 856 } 852 857 853 block_put(block); 858 rc = block_put(block); 859 if (rc != EOK) 860 return rc; 861 854 862 rc = ext4_balloc_free_block(inode_ref, fblock); 855 863 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.