mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 06:25:52 +02:00
ovl: fix NULL pointer dereference in copy up warning
commit4ee7e4a6c9upstream. This patch is fixing a NULL pointer dereference to get a recently introduced warning message working. Fixes:5b0a414d06("ovl: fix filattr copy-up failure") Signed-off-by: Christoph Fritz <chf.fritz@googlemail.com> Cc: <stable@vger.kernel.org> # v5.15 Signed-off-by: Miklos Szeredi <mszeredi@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c3d81231ab
commit
e6b678c1a3
|
|
@ -145,7 +145,7 @@ static int ovl_copy_fileattr(struct inode *inode, struct path *old,
|
|||
if (err == -ENOTTY || err == -EINVAL)
|
||||
return 0;
|
||||
pr_warn("failed to retrieve lower fileattr (%pd2, err=%i)\n",
|
||||
old, err);
|
||||
old->dentry, err);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
|
@ -178,7 +178,7 @@ static int ovl_copy_fileattr(struct inode *inode, struct path *old,
|
|||
return 0;
|
||||
}
|
||||
pr_warn("failed to retrieve upper fileattr (%pd2, err=%i)\n",
|
||||
new, err);
|
||||
new->dentry, err);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user