Ignore:
Timestamp:
2014-04-16T17:14:06Z (11 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f857e8b
Parents:
dba3e2c (diff), 70b570c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_filesystem.c

    rdba3e2c r8b863a62  
    3939#include <errno.h>
    4040#include <malloc.h>
     41#include <ipc/vfs.h>
    4142#include "libext4.h"
    4243
     
    796797                }
    797798               
    798                 block_put(block);
     799                rc = block_put(block);
     800                if (rc != EOK)
     801                        return rc;
     802
    799803                rc = ext4_balloc_free_block(inode_ref, fblock);
    800804                if (rc != EOK)
     
    840844                                }
    841845                               
    842                                 block_put(subblock);
     846                                rc = block_put(subblock);
     847                                if (rc != EOK)
     848                                        return rc;
    843849                        }
    844850                       
     
    850856                }
    851857               
    852                 block_put(block);
     858                rc = block_put(block);
     859                if (rc != EOK)
     860                        return rc;
     861
    853862                rc = ext4_balloc_free_block(inode_ref, fblock);
    854863                if (rc != EOK)
Note: See TracChangeset for help on using the changeset viewer.