Changeset ae3d4f8 in mainline for uspace/srv/fs/ext4fs/ext4fs_ops.c
- Timestamp:
- 2011-11-20T08:35:56Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fe27eb4
- Parents:
- 528e5b3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/ext4fs/ext4fs_ops.c
r528e5b3 rae3d4f8 611 611 rc = ext4_filesystem_check_sanity(fs); 612 612 if (rc != EOK) { 613 ext4_filesystem_fini(fs );613 ext4_filesystem_fini(fs, false); 614 614 free(fs); 615 615 free(inst); … … 620 620 rc = ext4_filesystem_check_features(fs, &read_only); 621 621 if (rc != EOK) { 622 ext4_filesystem_fini(fs );622 ext4_filesystem_fini(fs, false); 623 623 free(fs); 624 624 free(inst); … … 636 636 rc = ext4fs_node_get_core(&root_node, inst, EXT4_INODE_ROOT_INDEX); 637 637 if (rc != EOK) { 638 ext4_filesystem_fini(fs );638 ext4_filesystem_fini(fs, false); 639 639 free(fs); 640 640 free(inst); … … 683 683 fibril_mutex_unlock(&open_nodes_lock); 684 684 685 ext4_filesystem_fini(inst->filesystem); 686 687 return EOK; 685 return ext4_filesystem_fini(inst->filesystem, true); 688 686 } 689 687
Note:
See TracChangeset
for help on using the changeset viewer.