diff --git a/Kernel/Syscalls/futex.cpp b/Kernel/Syscalls/futex.cpp index c030a2c59bb..f1b7ccf3203 100644 --- a/Kernel/Syscalls/futex.cpp +++ b/Kernel/Syscalls/futex.cpp @@ -104,8 +104,6 @@ void Process::clear_futex_queues_on_exec() KResultOr Process::sys$futex(Userspace user_params) { - REQUIRE_PROMISE(thread); - Syscall::SC_futex_params params; if (!copy_from_user(¶ms, user_params)) return EFAULT;