Changeset 18902ca6 in mainline for uspace/srv/fs/exfat/exfat_ops.c
- Timestamp:
- 2017-10-04T18:25:38Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fa77af7
- Parents:
- 63011c53
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_ops.c
r63011c53 r18902ca6 595 595 int exfat_node_put(fs_node_t *fn) 596 596 { 597 if (fn == NULL) 598 return EOK; 599 597 600 exfat_node_t *nodep = EXFAT_NODE(fn); 598 601 bool destroy = false; … … 932 935 int exfat_free_block_count(service_id_t service_id, uint64_t *count) 933 936 { 934 fs_node_t *node ;937 fs_node_t *node = NULL; 935 938 exfat_node_t *bmap_node; 936 939 exfat_bs_t *bs; … … 945 948 946 949 bs = block_bb_get(service_id); 947 node = NULL;948 950 rc = exfat_bitmap_get(&node, service_id); 949 951 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.