Changeset 6722766 in mainline


Ignore:
Timestamp:
2011-12-10T17:47:54Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7a6690d8
Parents:
76da580a
Message:

exfat: exfat_read(), close the directory instance in case of error.

File:
1 edited

Legend:

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

    r76da580a r6722766  
    12761276                if (rc == EOK)
    12771277                        goto hit;
    1278                 if (rc == ENOENT)
     1278                else if (rc == ENOENT)
    12791279                        goto miss;
     1280
     1281                (void) exfat_directory_close(&di);
    12801282
    12811283err:
Note: See TracChangeset for help on using the changeset viewer.