Ignore:
File:
1 edited

Legend:

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

    r532f53d rd1538a1  
    3939#include <errno.h>
    4040#include <malloc.h>
    41 #include <ipc/vfs.h>
    4241#include "libext4.h"
    4342
     
    797796                }
    798797               
    799                 rc = block_put(block);
    800                 if (rc != EOK)
    801                         return rc;
    802 
     798                block_put(block);
    803799                rc = ext4_balloc_free_block(inode_ref, fblock);
    804800                if (rc != EOK)
     
    844840                                }
    845841                               
    846                                 rc = block_put(subblock);
    847                                 if (rc != EOK)
    848                                         return rc;
     842                                block_put(subblock);
    849843                        }
    850844                       
     
    856850                }
    857851               
    858                 rc = block_put(block);
    859                 if (rc != EOK)
    860                         return rc;
    861 
     852                block_put(block);
    862853                rc = ext4_balloc_free_block(inode_ref, fblock);
    863854                if (rc != EOK)
Note: See TracChangeset for help on using the changeset viewer.