Changeset 7cede12c in mainline


Ignore:
Timestamp:
2011-12-15T20:18:40Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b7068da
Parents:
9ce2202
Message:

exfat: Do not ignore the return value of exfat_node_put().

File:
1 edited

Legend:

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

    r9ce2202 r7cede12c  
    14591459        }
    14601460
    1461         (void) exfat_node_put(fn);
     1461        int rc2 = exfat_node_put(fn);
     1462        if (rc == EOK && rc2 != EOK)
     1463                rc = rc2;
     1464
    14621465        return rc;
    14631466}
Note: See TracChangeset for help on using the changeset viewer.