Changeset c62751f in mainline


Ignore:
Timestamp:
2011-12-10T10:15:09Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8d2cd8b
Parents:
071ff5fa
Message:

exfat: exfat_directory_block_load(), return error if block_put() has failed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/exfat/exfat_directory.c

    r071ff5fa rc62751f  
    112112                rc = block_put(di->b);
    113113                di->b = NULL;
     114                if (rc != EOK)
     115                        return rc;
    114116        }
    115117        if (!di->b) {
Note: See TracChangeset for help on using the changeset viewer.