diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-07-05 12:05:43 +0100 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2019-09-15 21:55:12 +0200 |
commit | cbc898d52cd11b23fd7c8079becbd8be742e78ce (patch) | |
tree | 6604d33546c987e07b117db7dc463cb22a6eea76 /fs/ubifs | |
parent | 089cf7f6ecb266b6a4164919a2e69bd2f938374a (diff) | |
download | linux-cbc898d52cd11b23fd7c8079becbd8be742e78ce.tar.bz2 |
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 <colin.king@canonical.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/debug.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; } |