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