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

Commit 099a71d9 authored by Eric Sesterhenn's avatar Eric Sesterhenn Committed by Linus Torvalds
Browse files

[PATCH] Remove needless checks in fs/9p/vfs_inode.c



coverity found two needless checks in vfs_inode.c (cid #1165 and #1164)
In both cases inode is always NULL when we goto error; either because it
is still initialized to NULL or is set to NULL explicitly. This patch
simply removes these checks to save some code.

Signed-off-by: default avatarEric Sesterhenn <snakebyte@gmx.de>
Acked-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
Cc: Ron Minnich <rminnich@lanl.gov>
Cc: Latchesar Ionkov <lucho@ionkov.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 18cddac3
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -530,9 +530,6 @@ v9fs_vfs_create(struct inode *dir, struct dentry *dentry, int mode,
	if (vfid)
		v9fs_fid_destroy(vfid);

	if (inode)
		iput(inode);

	return err;
}

@@ -1174,9 +1171,6 @@ static int v9fs_vfs_mkspecial(struct inode *dir, struct dentry *dentry,
	if (vfid)
		v9fs_fid_destroy(vfid);

	if (inode)
		iput(inode);

	return err;

}