[PATCH] fs: nfs: sysfs: Remove NULL check before kfree

From: Saurav Girepunje
Date: Tue Oct 29 2019 - 05:25:31 EST


Remove NULL check before kfree, NULL check is taken care
on kfree.

Signed-off-by: Saurav Girepunje <saurav.girepunje@xxxxxxxxx>
---
fs/nfs/sysfs.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/fs/nfs/sysfs.c b/fs/nfs/sysfs.c
index 4f3390b20239..c489496b5659 100644
--- a/fs/nfs/sysfs.c
+++ b/fs/nfs/sysfs.c
@@ -121,8 +121,7 @@ static void nfs_netns_client_release(struct kobject *kobj)
struct nfs_netns_client,
kobject);

- if (c->identifier)
- kfree(c->identifier);
+ kfree(c->identifier);
kfree(c);
}

--
2.20.1