Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

freebsd64_getfhat: path is a userspace argument #2284

Merged
merged 1 commit into from
Jan 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sys/compat/freebsd64/freebsd64_vfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1193,10 +1193,10 @@
freebsd64_getfhat(struct thread *td, struct freebsd64_getfhat_args *uap)
{
return (kern_getfhat(td, uap->flags, uap->fd,
__USER_CAP_STR(uap->path), UIO_SYSSPACE,
__USER_CAP_STR(uap->path), UIO_USERSPACE,
__USER_CAP_OBJ(uap->fhp), UIO_USERSPACE));
}

Check warning on line 1199 in sys/compat/freebsd64/freebsd64_vfs.c

View workflow job for this annotation

GitHub Actions / Style Checker

Missing Signed-off-by: line
int
freebsd64_fhlink(struct thread *td, struct freebsd64_fhlink_args *uap)
{
Expand Down
Loading