[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1535704514-26559-1-git-send-email-dingxiang@cmss.chinamobile.com>
Date: Fri, 31 Aug 2018 16:35:14 +0800
From: Ding Xiang <dingxiang@...s.chinamobile.com>
To: mark@...heh.com, jlbec@...lplan.org, ocfs2-devel@....oracle.com,
linux-kernel@...r.kernel.org
Subject: [PATCH] ocfs2: Fix unneeded null check
null check for kfree is unnecessary, so remove it.
Signed-off-by: Ding Xiang <dingxiang@...s.chinamobile.com>w
---
fs/ocfs2/aops.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c
index 302cd7c..da578ad 100644
--- a/fs/ocfs2/aops.c
+++ b/fs/ocfs2/aops.c
@@ -1392,8 +1392,7 @@ static int ocfs2_unwritten_check(struct inode *inode,
unlock:
spin_unlock(&oi->ip_lock);
out:
- if (new)
- kfree(new);
+ kfree(new);
return ret;
}
--
1.9.1
Powered by blists - more mailing lists