Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f702a6ef authored by Markus Elfring's avatar Markus Elfring Committed by Nikhilesh Reddy
Browse files

UBIFS: Delete unnecessary checks before the function call "iput"



The iput() function tests whether its argument is NULL and then
returns immediately. Thus the test around the call is not needed.

This issue was detected by using the Coccinelle software.

CRs-Fixed: 975289
Change-Id: I46adad6d364bed3ab053974cfe71a568d548307f
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
Git-commit: 54bcfdf19ec7c2f2788fa76426c91abdc4dab973
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git


Signed-off-by: default avatarNikhilesh Reddy <reddyn@codeaurora.org>
parent baf2b5fa
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -1331,7 +1331,6 @@ void ubifs_destroy_size_tree(struct ubifs_info *c)
	struct size_entry *e, *n;

	rbtree_postorder_for_each_entry_safe(e, n, &c->size_tree, rb) {
		if (e->inode)
		iput(e->inode);
		kfree(e);
	}
@@ -1533,7 +1532,6 @@ int ubifs_recover_size(struct ubifs_info *c)
				err = fix_size_in_place(c, e);
				if (err)
					return err;
				if (e->inode)
				iput(e->inode);
			}
		}