From de2c1bc5c31e7cf408e614e4d1a4ae5e4d37c8a3 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 5 Sep 2021 17:56:40 +0200 Subject: [PATCH] Kernel: Use TRY() in sys$unlink() --- Kernel/Syscalls/unlink.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Kernel/Syscalls/unlink.cpp b/Kernel/Syscalls/unlink.cpp index 6178ac6cd4..cc23e5c75a 100644 --- a/Kernel/Syscalls/unlink.cpp +++ b/Kernel/Syscalls/unlink.cpp @@ -14,10 +14,8 @@ KResultOr Process::sys$unlink(Userspace 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()); } }