mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 11:26:02 +09:00
fs: Fix error checking for d_hash_and_lookup()
[ Upstream commit0d5a4f8f77] The d_hash_and_lookup() function returns error pointers or NULL. Most incorrect error checks were fixed, but the one in int path_pts() was forgotten. Fixes:eedf265aa0("devpts: Make each mount of devpts an independent filesystem.") Signed-off-by: Wang Ming <machel@vivo.com> Message-Id: <20230713120555.7025-1-machel@vivo.com> Signed-off-by: Christian Brauner <brauner@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
0c8c205381
commit
48c54877ce
@@ -2603,7 +2603,7 @@ int path_pts(struct path *path)
|
||||
this.name = "pts";
|
||||
this.len = 3;
|
||||
child = d_hash_and_lookup(parent, &this);
|
||||
if (!child)
|
||||
if (IS_ERR_OR_NULL(child))
|
||||
return -ENOENT;
|
||||
|
||||
path->dentry = child;
|
||||
|
||||
Reference in New Issue
Block a user