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:
Jesper Juhl
2005-05-09 10:47:14 -05:00
committed by Dave Kleikamp
parent 6f817abc64
commit 259692bd5a
2 changed files with 4 additions and 8 deletions

View File

@@ -946,8 +946,7 @@ int __jfs_setxattr(struct inode *inode, const char *name, const void *value,
out:
up_write(&JFS_IP(inode)->xattr_sem);
if (os2name)
kfree(os2name);
kfree(os2name);
return rc;
}
@@ -1042,8 +1041,7 @@ ssize_t __jfs_getxattr(struct inode *inode, const char *name, void *data,
out:
up_read(&JFS_IP(inode)->xattr_sem);
if (os2name)
kfree(os2name);
kfree(os2name);
return size;
}