Changeset 84239b1 in mainline for uspace/lib/ext4/src/ops.c
- Timestamp:
- 2018-03-11T19:39:11Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3d47c97
- Parents:
- 850fd32
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/ops.c
r850fd32 r84239b1 219 219 ext4_node_t *eparent = EXT4_NODE(pfn); 220 220 ext4_filesystem_t *fs = eparent->instance->filesystem; 221 errno_t rc2; 221 222 222 223 if (!ext4_inode_is_type(fs->superblock, eparent->inode_ref->inode, … … 244 245 245 246 exit: 246 ;247 248 247 /* Destroy search result structure */ 249 errno_t constrc2 = ext4_directory_destroy_result(&result);248 rc2 = ext4_directory_destroy_result(&result); 250 249 return rc == EOK ? rc2 : rc; 251 250 } … … 1279 1278 { 1280 1279 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 ; 1398 1399 errno_t const rc2 = ext4_node_put(fn); 1397 rc2 = ext4_node_put(fn); 1400 1398 return rc == EOK ? rc2 : rc; 1401 1399 }
Note:
See TracChangeset
for help on using the changeset viewer.