mirror of
https://github.com/RGBCube/serenity
synced 2025-07-03 05:02:14 +00:00
Kernel: Use TRY() in sys$chmod()
This commit is contained in:
parent
3631ebe963
commit
24e8ad5ade
1 changed files with 2 additions and 4 deletions
|
@ -14,10 +14,8 @@ KResultOr<FlatPtr> Process::sys$chmod(Userspace<const char*> user_path, size_t p
|
||||||
{
|
{
|
||||||
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
|
||||||
REQUIRE_PROMISE(fattr);
|
REQUIRE_PROMISE(fattr);
|
||||||
auto path = get_syscall_path_argument(user_path, path_length);
|
auto path = TRY(get_syscall_path_argument(user_path, path_length));
|
||||||
if (path.is_error())
|
return VirtualFileSystem::the().chmod(path->view(), mode, current_directory());
|
||||||
return path.error();
|
|
||||||
return VirtualFileSystem::the().chmod(path.value()->view(), mode, current_directory());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
KResultOr<FlatPtr> Process::sys$fchmod(int fd, mode_t mode)
|
KResultOr<FlatPtr> Process::sys$fchmod(int fd, mode_t mode)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue