Changes in uspace/lib/ext4/src/ops.c [84239b1:a35b458] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/ops.c
r84239b1 ra35b458 219 219 ext4_node_t *eparent = EXT4_NODE(pfn); 220 220 ext4_filesystem_t *fs = eparent->instance->filesystem; 221 errno_t rc2;222 221 223 222 if (!ext4_inode_is_type(fs->superblock, eparent->inode_ref->inode, … … 245 244 246 245 exit: 246 ; 247 247 248 /* Destroy search result structure */ 248 rc2 = ext4_directory_destroy_result(&result);249 errno_t const rc2 = ext4_directory_destroy_result(&result); 249 250 return rc == EOK ? rc2 : rc; 250 251 } … … 1278 1279 { 1279 1280 fs_node_t *fn; 1280 errno_t rc2;1281 1281 errno_t rc = ext4_node_get(&fn, service_id, index); 1282 1282 if (rc != EOK) … … 1395 1395 1396 1396 exit: 1397 rc2 = ext4_node_put(fn); 1397 ; 1398 1399 errno_t const rc2 = ext4_node_put(fn); 1398 1400 return rc == EOK ? rc2 : rc; 1399 1401 }
Note:
See TracChangeset
for help on using the changeset viewer.