diff options
Diffstat (limited to 'libglusterfs/src/inode.c')
| -rw-r--r-- | libglusterfs/src/inode.c | 20 | 
1 files changed, 6 insertions, 14 deletions
diff --git a/libglusterfs/src/inode.c b/libglusterfs/src/inode.c index a0088c03c55..2efcd89cc73 100644 --- a/libglusterfs/src/inode.c +++ b/libglusterfs/src/inode.c @@ -134,8 +134,7 @@ __dentry_unset (dentry_t *dentry)          list_del_init (&dentry->inode_list); -        if (dentry->name) -                GF_FREE (dentry->name); +        GF_FREE (dentry->name);          if (dentry->parent) {                  __inode_unref (dentry->parent); @@ -1205,9 +1204,7 @@ __inode_path (inode_t *inode, const char *name, char **bufp)  out:          if (__is_root_gfid (inode->gfid) && !name) {                  ret = 1; -                if (buf) { -                        GF_FREE (buf); -                } +                GF_FREE (buf);                  buf = GF_CALLOC (ret + 1, sizeof (char), gf_common_mt_char);                  if (buf) {                          strcpy (buf, "/"); @@ -1385,10 +1382,8 @@ inode_table_new (size_t lru_limit, xlator_t *xl)  out:          if (ret) {                  if (new) { -                        if (new->inode_hash) -                                GF_FREE (new->inode_hash); -                        if (new->name_hash) -                                GF_FREE (new->name_hash); +                        GF_FREE (new->inode_hash); +                        GF_FREE (new->name_hash);                          if (new->dentry_pool)                                  mem_pool_destroy (new->dentry_pool);                          if (new->inode_pool) @@ -1454,8 +1449,7 @@ inode_from_path (inode_table_t *itable, const char *path)          if (parent)                  inode_unref (parent); -        if (pathname) -                GF_FREE (pathname); +        GF_FREE (pathname);  out:          return inode; @@ -1667,9 +1661,7 @@ unlock:                  }          } -        if (inode_ctx != NULL) { -                GF_FREE (inode_ctx); -        } +        GF_FREE (inode_ctx);          return;  }  | 
