Changes in uspace/lib/ext4/src/extent.c [a35b458:84239b1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/extent.c
ra35b458 r84239b1 476 476 uint16_t pos = 0; 477 477 errno_t rc; 478 errno_t rc2; 478 479 while (ext4_extent_header_get_depth(eh) != 0) { 479 480 /* Search index in index node by iblock */ … … 513 514 514 515 cleanup: 515 ; 516 517 errno_t rc2 = EOK; 516 rc2 = EOK; 518 517 519 518 /* … … 623 622 /* Find the first extent to modify */ 624 623 ext4_extent_path_t *path; 624 errno_t rc2; 625 625 errno_t rc = ext4_extent_find_extent(inode_ref, iblock_from, &path); 626 626 if (rc != EOK) … … 734 734 735 735 cleanup: 736 ; 737 738 errno_t rc2 = EOK; 736 rc2 = EOK; 739 737 740 738 /* … … 982 980 /* Load the nearest leaf (with extent) */ 983 981 ext4_extent_path_t *path; 982 errno_t rc2; 984 983 errno_t rc = ext4_extent_find_extent(inode_ref, new_block_idx, &path); 985 984 if (rc != EOK) … … 1086 1085 1087 1086 finish: 1088 ; 1089 1090 errno_t rc2 = EOK; 1087 rc2 = EOK; 1091 1088 1092 1089 /* Set return values */
Note:
See TracChangeset
for help on using the changeset viewer.