Kernel: Use TRY() in sys$unlink()

This commit is contained in:
Andreas Kling 2021-09-05 17:56:40 +02:00
parent 4e4b7c272c
commit de2c1bc5c3
Notes: sideshowbarker 2024-07-18 04:41:34 +09:00

View File

@ -14,10 +14,8 @@ KResultOr<FlatPtr> Process::sys$unlink(Userspace<const char*> user_path, size_t
{
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
REQUIRE_PROMISE(cpath);
auto path = get_syscall_path_argument(user_path, path_length);
if (path.is_error())
return path.error();
return VirtualFileSystem::the().unlink(path.value()->view(), current_directory());
auto path = TRY(get_syscall_path_argument(user_path, path_length));
return VirtualFileSystem::the().unlink(path->view(), current_directory());
}
}