Changes in uspace/lib/ext4/libext4_filesystem.c [d1538a1:532f53d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_filesystem.c
rd1538a1 r532f53d 39 39 #include <errno.h> 40 40 #include <malloc.h> 41 #include <ipc/vfs.h> 41 42 #include "libext4.h" 42 43 … … 796 797 } 797 798 798 block_put(block); 799 rc = block_put(block); 800 if (rc != EOK) 801 return rc; 802 799 803 rc = ext4_balloc_free_block(inode_ref, fblock); 800 804 if (rc != EOK) … … 840 844 } 841 845 842 block_put(subblock); 846 rc = block_put(subblock); 847 if (rc != EOK) 848 return rc; 843 849 } 844 850 … … 850 856 } 851 857 852 block_put(block); 858 rc = block_put(block); 859 if (rc != EOK) 860 return rc; 861 853 862 rc = ext4_balloc_free_block(inode_ref, fblock); 854 863 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.