Changeset 9530d94 in mainline for uspace/srv/fs/minixfs/mfs_dentry.c


Ignore:
Timestamp:
2011-07-27T21:37:38Z (14 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c8d0d6d8
Parents:
ee257b2
Message:

Check the block_put() error code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/minixfs/mfs_dentry.c

    ree257b2 r9530d94  
    7777        }
    7878
    79         block_put(b);
     79        r = block_put(b);
    8080
    8181        d_info->index = index;
     
    122122
    123123        b->dirty = true;
    124         block_put(b);
     124        r = block_put(b);
    125125
    126126out:
Note: See TracChangeset for help on using the changeset viewer.