JFS: Remove redundant kfree() NULL pointer checks
kfree() can handle a NULL pointer, don't worry about passing it one. Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk> Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
This commit is contained in:
committed by
Dave Kleikamp
parent
6f817abc64
commit
259692bd5a
@@ -70,7 +70,6 @@ static struct posix_acl *jfs_get_acl(struct inode *inode, int type)
|
|||||||
if (!IS_ERR(acl))
|
if (!IS_ERR(acl))
|
||||||
*p_acl = posix_acl_dup(acl);
|
*p_acl = posix_acl_dup(acl);
|
||||||
}
|
}
|
||||||
if (value)
|
|
||||||
kfree(value);
|
kfree(value);
|
||||||
return acl;
|
return acl;
|
||||||
}
|
}
|
||||||
@@ -112,7 +111,6 @@ static int jfs_set_acl(struct inode *inode, int type, struct posix_acl *acl)
|
|||||||
}
|
}
|
||||||
rc = __jfs_setxattr(inode, ea_name, value, size, 0);
|
rc = __jfs_setxattr(inode, ea_name, value, size, 0);
|
||||||
out:
|
out:
|
||||||
if (value)
|
|
||||||
kfree(value);
|
kfree(value);
|
||||||
|
|
||||||
if (!rc) {
|
if (!rc) {
|
||||||
|
@@ -946,7 +946,6 @@ int __jfs_setxattr(struct inode *inode, const char *name, const void *value,
|
|||||||
out:
|
out:
|
||||||
up_write(&JFS_IP(inode)->xattr_sem);
|
up_write(&JFS_IP(inode)->xattr_sem);
|
||||||
|
|
||||||
if (os2name)
|
|
||||||
kfree(os2name);
|
kfree(os2name);
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
@@ -1042,7 +1041,6 @@ ssize_t __jfs_getxattr(struct inode *inode, const char *name, void *data,
|
|||||||
out:
|
out:
|
||||||
up_read(&JFS_IP(inode)->xattr_sem);
|
up_read(&JFS_IP(inode)->xattr_sem);
|
||||||
|
|
||||||
if (os2name)
|
|
||||||
kfree(os2name);
|
kfree(os2name);
|
||||||
|
|
||||||
return size;
|
return size;
|
||||||
|
Reference in New Issue
Block a user