From: Colin Ian King Date: Fri, 5 Jul 2019 11:05:43 +0000 (+0100) Subject: ubifs: Remove redundant assignment to pointer fname X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=cbc898d52cd11b23fd7c8079becbd8be742e78ce;p=openwrt%2Fstaging%2Fblogic.git ubifs: Remove redundant assignment to pointer fname The pointer fname is being assigned with a value that is never read because the function returns after the assignment. The assignment is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King Signed-off-by: Richard Weinberger --- diff --git a/fs/ubifs/debug.c b/fs/ubifs/debug.c index a5f10d79e0dd..e4b52783819d 100644 --- a/fs/ubifs/debug.c +++ b/fs/ubifs/debug.c @@ -2817,7 +2817,6 @@ void dbg_debugfs_init_fs(struct ubifs_info *c) c->vi.ubi_num, c->vi.vol_id); if (n == UBIFS_DFS_DIR_LEN) { /* The array size is too small */ - fname = UBIFS_DFS_DIR_NAME; return; }