Changes in / [a49c39c8:4a33845] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/filesystem.c
ra49c39c8 r4a33845 421 421 enum cache_mode cmode, aoff64_t *size, ext4_filesystem_t **rfs) 422 422 { 423 int fs_inited = 0;424 423 ext4_filesystem_t *fs = NULL; 425 424 fs_node_t *root_node = NULL; … … 438 437 if (rc != EOK) 439 438 goto error; 440 441 fs_inited = 1;442 439 443 440 /* Read root node */ … … 466 463 ext4_node_put(root_node); 467 464 468 if (fs _inited)465 if (fs != NULL) { 469 466 ext4_filesystem_fini(fs); 470 free(fs); 467 free(fs); 468 } 469 471 470 return rc; 472 471 }
Note:
See TracChangeset
for help on using the changeset viewer.