[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20191029092522.GA10685@saurav>
Date: Tue, 29 Oct 2019 14:55:22 +0530
From: Saurav Girepunje <saurav.girepunje@...il.com>
To: trond.myklebust@...merspace.com, anna.schumaker@...app.com,
linux-nfs@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: saurav.girepunje@...mail.com
Subject: [PATCH] fs: nfs: sysfs: Remove NULL check before kfree
Remove NULL check before kfree, NULL check is taken care
on kfree.
Signed-off-by: Saurav Girepunje <saurav.girepunje@...il.com>
---
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
Powered by blists - more mailing lists