Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/src/extent.c

    r84239b1 ra35b458  
    476476        uint16_t pos = 0;
    477477        errno_t rc;
    478         errno_t rc2;
    479478        while (ext4_extent_header_get_depth(eh) != 0) {
    480479                /* Search index in index node by iblock */
     
    514513
    515514cleanup:
    516         rc2 = EOK;
     515        ;
     516
     517        errno_t rc2 = EOK;
    517518
    518519        /*
     
    622623        /* Find the first extent to modify */
    623624        ext4_extent_path_t *path;
    624         errno_t rc2;
    625625        errno_t rc = ext4_extent_find_extent(inode_ref, iblock_from, &path);
    626626        if (rc != EOK)
     
    734734
    735735cleanup:
    736         rc2 = EOK;
     736        ;
     737
     738        errno_t rc2 = EOK;
    737739
    738740        /*
     
    980982        /* Load the nearest leaf (with extent) */
    981983        ext4_extent_path_t *path;
    982         errno_t rc2;
    983984        errno_t rc = ext4_extent_find_extent(inode_ref, new_block_idx, &path);
    984985        if (rc != EOK)
     
    10851086
    10861087finish:
    1087         rc2 = EOK;
     1088        ;
     1089
     1090        errno_t rc2 = EOK;
    10881091
    10891092        /* Set return values */
Note: See TracChangeset for help on using the changeset viewer.